gpt4 book ai didi

c# - 将 EST 时间转换为本地时间

转载 作者:太空宇宙 更新时间:2023-11-03 11:09:58 28 4
gpt4 key购买 nike

我是 C# 新手

我正在使用 YQL 获取 XML 格式的数据。

我在美国东部时间晚上 10:47 收到时间

我想把它转换成我的时区,比方说转换成 CST(中国标准时间)或 MYT(马来西亚标准时间)

我如何使用 asp.net C# 进行转换

最佳答案

你可以试试TimeZoneInfo.ConvertTime方法:

DateTime estTime = new DateTime(); //for example: 10:47PM EST

TimeZoneInfo estZone = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time");

TimeZoneInfo cstZone = TimeZoneInfo.FindSystemTimeZoneById("China Standard Time");

DateTime yourLocalTime = TimeZoneInfo.ConvertTime(estTime, estZone, cstZone);

关于c# - 将 EST 时间转换为本地时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14392241/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com