DateTimeOffset::FromUnixTimeSeconds Method (Int64)
Converts a Unix time expressed as the number of seconds that have elapsed since 1970-01-01T00:00:00Z to a DateTimeOffset value.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- seconds
-
Type:
System::Int64
A Unix time, expressed as the number of seconds that have elapsed since 1970-01-01T00:00:00Z (January 1, 1970, at 12:00 AM UTC). For Unix times before this date, its value is negative.
Return Value
Type: System::DateTimeOffsetA date and time value that represents the same moment in time as the Unix time.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | seconds is less than -62,135,596,800. -or- seconds is greater than 253,402,300,799. |
The Offset property value of the returned DateTimeOffset instance is TimeSpan::Zero, which represents Coordinated Universal Time. You can convert it to the time in a specific time zone by calling the TimeZoneInfo::ConvertTime(DateTimeOffset, TimeZoneInfo^) method.
Available since 10
.NET Framework
Available since 4.6