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.
在 PHP 中,您可以编写以下代码:
date_default_timezone_set("UTC");
我如何用 C# 编写这个?
另外,我该怎么写:
declare(ticks=1);
在 C# 中?
在 C# 中,时区内置于 DateTime 结构中,因此您不需要设置默认值。相反,当您操作 DateTime 实例时,您使用的是 UTC 版本的方法。例如,在构造函数中,您可以指定提供的日期是本地日期还是 UTC。
关于第二个问题,你只是想要的语法
int ticks = 1; // or var ticks = 1;
如果您尝试将时间段添加到日期,则应使用 TimeSpan,如下所示:
TimeSpan ticks = new TimeSpan(1);