Format time and date
using System;
class MainClass {
public static void Main() {
DateTime dt = DateTime.Now;
Console.WriteLine("Use m for day of month: {0:m}", dt);
}
}
Output Use m for day of month: March 25
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
-
-
|