Click or drag to resize
DateTimeExtensionsConvertRegionalTimeToUtc Method
Converts regional time to utc

Namespace: Entelect.Extensions
Assembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntax
C#
public static DateTime ConvertRegionalTimeToUtc(
	this DateTime regionalTime,
	string timeZone
)

Parameters

regionalTime
Type: SystemDateTime
The regional dateTime
timeZone
Type: SystemString
The timezone to convert from

Return Value

Type: DateTime
UTC 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).
Exceptions
ExceptionCondition
OutOfMemoryException
SecurityException
ArgumentNullExceptiontimeZone is null.
ArgumentException
TimeZoneNotFoundExceptiontimeZone is not found.
InvalidTimeZoneExceptiontimeZone is invalid.
See Also