Getting the first day of the month

P

Patrick.O.Ige

I have a calendar and i'm getting the first day of the month by doing so
below
calendarstartdate.SelectedDate =
Convert.ToDateTime(String.Format("{0:yyyy/MM/1}",DateTime.Now));
Are there better ways to do this?
Any ideas
 
M

Mark Rae

I have a calendar and i'm getting the first day of the month by doing so
below
calendarstartdate.SelectedDate =
Convert.ToDateTime(String.Format("{0:yyyy/MM/1}",DateTime.Now));

Looks OK to me...
Are there better ways to do this?

There are other ways, certainly, but I wouldn't have thought any was
particularly better or worse...
 
H

Hans Kesting

I have a calendar and i'm getting the first day of the month by doing so
below
calendarstartdate.SelectedDate =
Convert.ToDateTime(String.Format("{0:yyyy/MM/1}",DateTime.Now));
Are there better ways to do this?
Any ideas

Without converting to/from a string:
DateTime nu = DateTime.Now;
DateTime first = new DateTime(nu.Year, nu.Month, 1);


Hans Kesting
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,444
Messages
2,571,709
Members
48,796
Latest member
Greg L.
Top