DateTimeExtensionsConvertUtcToRegionalTime Method |
Converts utc to regional time
Namespace: Entelect.ExtensionsAssembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntaxpublic static DateTime ConvertUtcToRegionalTime(
this DateTime utcTime,
string timeZone
)
Parameters
- utcTime
- Type: SystemDateTime
The UTC dateTime - timeZone
- Type: SystemString
The timezone to convert to
Return Value
Type:
DateTimeRegional Time
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
DateTime. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
ExceptionsException | Condition |
---|
OutOfMemoryException | |
SecurityException | |
ArgumentNullException | timeZone is null. |
ArgumentException | |
TimeZoneNotFoundException | timeZone is not found. |
InvalidTimeZoneException | timeZone is invalid. |
See Also