DateTime.Parse
using System;
class MainClass
{
public static void Main(string[] args)
{
DateTime dt4 = DateTime.Parse("5/9/2005 14:15:33");
Console.WriteLine(dt4);
}
}
Output 05/09/2005 2:15:33 PM
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
|