i have a code by which i can find the only number of days for count next birthday but i want not only days but also month.
DateTime birthday=dtp.Value;
DateTime td = DateTime.Today;
DateTime next = new DateTime(td.Year, birthday.Month, birthday.Day);
if (next < td)
{
next = next.AddYears(1);
}
int d = (next - td).Days;`
if my birthdate is 29 Oct 1994 than in int d i will get the 44 days( number of days remaining) but i want 1 month and 14 days as an output
Please help me for this solution.