DateTimeOffset.Offset Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Eşgüdümlü Evrensel Saat'ten (UTC) saatin uzaklığını alır.
public:
property TimeSpan Offset { TimeSpan get(); };
public TimeSpan Offset { get; }
member this.Offset : TimeSpan
Public ReadOnly Property Offset As TimeSpan
Özellik Değeri
Geçerli DateTimeOffset nesnenin saat değeri ile Eşgüdümlü Evrensel Saat (UTC) arasındaki fark.
Örnekler
Aşağıdaki örnek, yerel saatin Eşgüdümlü Evrensel Saat 'ten (UTC) farkı görüntülemek için özelliğini kullanır Offset .
DateTimeOffset localTime = DateTimeOffset.Now;
Console.WriteLine("The local time zone is {0} hours and {1} minutes {2} than UTC.",
Math.Abs(localTime.Offset.Hours),
localTime.Offset.Minutes,
localTime.Offset.Hours < 0 ? "earlier" : "later");
// The example displays output similar to the following for a system in the
// U.S. Pacific Standard Time zone:
// The local time zone is 8 hours and 0 minutes earlier than UTC.
let localTime = DateTimeOffset.Now
printfn $"""The local time zone is {abs localTime.Offset.Hours} hours and {localTime.Offset.Minutes} minutes {if localTime.Offset.Hours < 0 then "earlier" else "later"} than UTC."""
// The example displays output similar to the following for a system in the
// U.S. Pacific Standard Time zone:
// The local time zone is 8 hours and 0 minutes earlier than UTC.
Dim localTime As DateTimeOffset = DateTimeOffset.Now
Console.WriteLine("The local time zone is {0} hours and {1} minutes {2} than UTC.", _
Math.Abs(localTime.Offset.Hours), _
localTime.Offset.Minutes, _
IIf(localTime.Offset.Hours < 0, "earlier", "later"))
' If run on a system whose local time zone is U.S. Pacific Standard Time,
' the example displays output similar to the following:
' The local time zone is 8 hours and 0 minutes earlier than UTC.
Açıklamalar
Döndürülen TimeSpan nesnenin Hours özelliğinin değeri -14 saat ile 14 saat arasında değişebilir.
özelliğinin Offset değeri dakika olarak kesindir.