Obtenir TimeZoneInfo en C#
public TimeZoneInfo TimeZoneInfo { get { var timeZoneInfoString = _user.TimeZoneInfoString; if (!string.IsNullOrEmpty(timeZoneInfoString)) { try { return TimeZoneInfo.FindSystemTimeZoneById(timeZoneInfoString); } catch (TimeZoneNotFoundException exception) { LogManager.GetLogger(GetType()).Error(exception); } catch (Exception exception) { LogManager.GetLogger(GetType()).Error(exception); } return TimeZoneInfo.Local; } else { LogManager.GetLogger(GetType()).ErrorFormat("timeZoneInfoString for user {0} is empty", HttpContext.Current.User.Identity.Name); return TimeZoneInfo.Local; } } }
Parmi eux, _user.TimeZoneInfoString sera stocké dans la base de données
Ce qui précède est le contenu de l'obtention TimeZoneInfo en C#, plus Pour plus de contenu connexe, veuillez faire attention au site Web PHP chinois (www.php.cn) !