public static DateTime StandarTimeMexico(DateTime fecha)
{
TimeZoneInfo cst = TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time (Mexico)");
DateTime creado = new DateTime(fecha.Year, fecha.Month, fecha.Day, fecha.Hour, fecha.Minute, fecha.Second);
DateTime cstmexico = TimeZoneInfo.ConvertTimeFromUtc(creado, cst);
return cstmexico;
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.