I want to add one month to the DateTime object but this object format is "dd/MM/yyyy" When I add one month it increases one day, but this is not what I need.
Here is the code.
DateTime installmentdate = baseDate.AddMonths(1);
Suppose baseDate
is 10/2/2014 when I add one month to date it becomes 10/3/2014
Please suggest me how to do it.