vote up 1 vote down star

In C# ,How can i find the number of days in a month which resides in a DateTime object.

Ex :

DateTime objDate=new DateTime();

using the objDate, now i want to get the number of days of the current month. IS there any built-in function present in C# ?

Leap years also has to be taken care of

flag

6 Answers

vote up 7 vote down check
int noOfDays = DateTime.DaysInMonth(objDate.Year, objDate.Month);
link|flag
Bah! Just beat me. – GenericTypeTea Nov 4 at 10:27
1  
sigh... I think I need to start just posting and not checking if it is correct :p – Svish Nov 4 at 10:28
+1 First Answer – GenericTypeTea Nov 4 at 10:28
vote up 0 vote down

Try the following:

DateTime objDate = default(DateTime);
    objDate = Convert.ToDateTime("2009-02-05");

    Response.Write(DateTime.DaysInMonth(objDate.Year, objDate.Month));
link|flag
vote up 0 vote down

System.Globalization.CultureInfo cultureInfo = System.Globalization.CultureInfo.CurrentUICulture;
Double DaysInMonth = cultureInfo.Calendar.GetDaysInMonth(DateTime.Now.Month, DateTime.Now.Year);

link|flag
vote up 3 vote down
int daysInMonth = System.DateTime.DaysInMonth(objDate.Year, objDate.Month);
link|flag
Missing a semi colon there mate. – GenericTypeTea Nov 4 at 10:29
Thanks - added it. – Mark Byers Nov 4 at 10:30
vote up 1 vote down

How about this?

DateTime.DaysInMonth(date.Year, date.Month);
link|flag
vote up 3 vote down
int days = DateTime.DaysInMonth(objDate.Year, objDate.Month);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.