从UICulture转换日期时间

时间:2015-06-04 10:29:37

标签: c# asp.net datetime

我有一个SQL DB,其中包含存储在PST时区的各种日期时间字段。 来自世界各地的用户将使用数据库显示数据。

我需要能够将SQL DB日期时间转换为他们的特定设置,我希望这些设置来自System.Threading.Thread.CurrentThread.CurrentUICulture

我的问题是,如何使用CurrentUICulture变量将日期时间转换为C#中当前用户的语言环境。

1 个答案:

答案 0 :(得分:0)

也许是ToString?

 DateTime date=new DateTime();
 var str = date.ToString(System.Threading.Thread.CurrentThread.CurrentCulture);