Converts a UInt64 to a UInt32.
[Visual Basic] Overloads Public Shared Function ToUInt32( _ ByVal value As UInt64 _ ) As UInt32 [C#] public static uint ToUInt32( ulong value ); [C++] public: static unsigned int ToUInt32( unsigned __int64 value ); [JScript] public static function ToUInt32( value : UInt64 ) : UInt32;
The converted value.
Exception Type | Condition |
---|---|
OverflowException | is thrown if value is greater than UInt32.MaxValue. |
Convert Class | Convert Members | System Namespace | Convert.ToUInt32 Overload List