DateTime dt = Convert.ToDateTime(dateTimePicker1.Text); //taken the DateTime from form
string dt1 = String.Format("Y", dt); //trying to make so that it comes to "August 2009"
Tried but all I get is dt1="Y".
|
|
Tried but all I get is dt1="Y". |
|||
|
|
|
|
|
||
|
|
|
|
Try dt.ToString("Y") |
||
|
|
|
|
Try:
|
||
|
|
|
|
|
|||
|
|
|
You have other answers that use
|
||
|
|
|
|
The other answers will work. I just wanted to comment on the reason why your code doesn't work.
hope that helps. The format specifier you're looking for is probably "MMMM yyyy", the default format for "Y" is year-month, not month-year. |
||
|
|