Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# parse the date in DD/MMM/YYYY format

CultureInfo culture = new CultureInfo("es-ES");
String myDate = "15/05/2018";
DateTime date = DateTime.Parse(myDate,culture);
Console.WriteLine(date.ToString("dd/MMM/yyyy"));
Source by developerslogblog.wordpress.com #
 
PREVIOUS NEXT
Tagged: #parse #date #format
ADD COMMENT
Topic
Name
5+5 =