DateTime.Parse(String) C# with Example



DateTime.Parse(String) C# with Example

// Converts the string representation of a date and time to its DateTime equivalent 
var dateTime = DateTime.Parse("14:23 22 Jul 2016"); 
Console.WriteLine(dateTime.ToString()); 

0 Comment's

Comment Form

Submit Comment