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이 데이터베이스에 저장됩니다
위는 TimeZoneInfo를 가져오는 내용입니다. C# 관련 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!