我们如何使用 NodaTime 解析 Zoned DateTime 字符串?我目前正在使用 LocalDateTimePattern 进行解析,但我认为产生的 DateTime 值将在服务器的时区中。
var pattern = LocalDateTimePattern.CreateWithInvariantCulture(dateTimePattern);
var parseResult = pattern.Parse(dateTimeString);
if (!parseResult.Success)
{
// throw an exception or whatever you want to do
}
我在查看 Noda Time API时遇到了 ZonedDateTime 模式。但是,我无法使用它。我错过了什么吗?