ホームページ >バックエンド開発 >C#.Net チュートリアル >C# で TimeZoneInfo を取得する
C#でのTimeZoneInfoの取得
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; } } }
このうち、_user.TimeZoneInfoStringはデータベースに保存されます
上記はC#でのTimeZoneInfoの取得の内容です。詳細については、PHPの中国語Webサイト( www.php.cn)!