NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Convert.ToInt64 (UInt64)

Converts a UInt64 to an Int64.

[Visual Basic]
Overloads Public Shared Function ToInt64( _
   ByVal value As UInt64 _
) As Long
[C#]
public static long ToInt64(
   ulong value
);
[C++]
public: static __int64 ToInt64(
   unsigned __int64 value
);
[JScript]
public static function ToInt64(
   value : UInt64
) : long;

Parameters

value
The value to convert.

Return Value

The value as an Int64.

Exceptions

Exception Type Condition
OverflowException is thrown if value is greater than Int64.MaxValue.

See Also

Convert Class | Convert Members | System Namespace | Convert.ToInt64 Overload List