Date formatting in c#.net
Date time format in c#
Custom Date Time Format Strings
I'm going to explain to fixing to date time issues (server machine date time and local machine date time mismatch issues).
Date Time format is a common issues for c# developers ....
Date time format in c#
Custom Date Time Format Strings
I'm going to explain to fixing to date time issues (server machine date time and local machine date time mismatch issues).
Date Time format is a common issues for c# developers ....
internal DateTime ConvertToDateTime(string stringDateTime)
{
DateTime dt_finalDateTime;
string stDateTime;
try
{
dt_finalDateTime = Convert.ToDateTime(stringDateTime);
}
catch (Exception e)
{
string[] strDate = stringDateTime.Split('/');
stDateTime = strDate[1] + '/' + strDate[0] + '/' + strDate[2];
dt_finalDateTime = Convert.ToDateTime(stDateTime);
}
return dt_finalDateTime;
}
{
DateTime dt_finalDateTime;
string stDateTime;
try
{
dt_finalDateTime = Convert.ToDateTime(stringDateTime);
}
catch (Exception e)
{
string[] strDate = stringDateTime.Split('/');
stDateTime = strDate[1] + '/' + strDate[0] + '/' + strDate[2];
dt_finalDateTime = Convert.ToDateTime(stDateTime);
}
return dt_finalDateTime;
}