hi
how can i format date ? dd/mm/yyyy or mm/dd/yy
like in VB format("dd/mm/yy",now)
how can i do it in c#
thank's
|
|
|
|
|
|
|
It's almost the same, simply use the ToString() method of the DateTime type, e.g:
Or:
In addition, you might want to consider using one of the predefined format, e.g:
These ensure that the format will be correct, independent of the current locale settings. Check the following MSDN pages for more information
Some additional, related information: If you want to display a date in a specific locale / culture, then there is an overload of the ToString() method that takes an IFormatProvider:
Or alternatively, you can set the CultureInfo of the current thread prior to formatting a date:
|
||||||||
|
|
|
Look up "format strings" on MSDN to see all formatting options. Use yy, yyyy, M, MM, MMM, MMMM, d, dd, ddd, dddd for the date component Use h, hh, H, HH, m, mm, s, ss for the time-of-day component |
|||
|
|
|
|
In you can also write
for a short notation or
for a long notation like "Sunday, Febuary 1, 2009". Or take a look at MSDN for the possibities of .ToString("???"); |
|||
|
|
|
|
Here's a great resource that I use. Also check out the discussion! http://blog.stevex.net/index.php/string-formatting-in-csharp/ |
||
|
|
|
|
Try this :
|
||
|
|
Better yet, use just DateTime.Now.ToString() or DateTime.Now.ToString(CultureInfo.CurrentCulture) to use the format the user prefers. |
||
|
|
|
|
check this link. The same methods apply for VB also ... |
||
|
|