DateTime.ParseExact
using System;
class MainClass
{
public static void Main(string[] args)
{
DateTime dt8 = DateTime.ParseExact("September 05", "MMMM dd", null);
Console.WriteLine(dt8);
}
}
Output 05/09/2007 12:00:00 AM
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
|