gpt4 book ai didi

c# - 获取特定区域的日期/时间?

转载 作者:行者123 更新时间:2023-11-30 21:07:01 25 4
gpt4 key购买 nike

如何获取特定区域的 DateTime.Now

我正在尝试获取国外的当前日期,我正在寻找实现此目的的简单方法。

注意:我不介意从在线服务器获取值(value),我只是不想为此花费太多开发时间。

最佳答案

如果你知道你想要的时区,你可以使用 TimeZoneInfo类(class)。第一get the TimeZoneInfo object for your desired timezone ,然后将当前时间转换为该时区:

var timezone = TimeZoneInfo.FindSystemTimeZoneById("Central America Standard Time");
var dateTime = TimeZoneInfo.ConvertTime(DateTime.Now, timezone);

关于c# - 获取特定区域的日期/时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10778779/

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