Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个小问题,基本上,我从特定来源获得了一些值,其中所有内容都以 UTC 日期时间格式保存,但我想以正常的本地日期时间显示它。
所以我有一个 ResultTable resultsTable = ... values
这个表我绑定到一个GridView。
那么我在哪里或如何修改日期?
试试上面的。输入你想要的格式和你想要的文化
string x = dt.ToString("yyyy-MM-dd", CultureInfo.InvariantCulture);
或字符串 x = dt.ToString("yyyy-MM-dd");