C#中获取TimeZoneInfo
程序员文章站
2022-04-28 14:25:39
...
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中文网(www.php.cn)!
上一篇: python和vba学哪个
下一篇: python中有堆吗