|
BitwiseCastToInt32 Method
|
Performs proper bitwise conversion between unsigned and signed value
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax public static int ToInt32(
uint unsignedInt
)
static member ToInt32 :
unsignedInt : uint32 -> int
GSF.BitwiseCast.ToInt32 = function(unsignedInt);
View SourceParameters
- unsignedInt UInt32
- Unsigned integer that is passed in to be converted to a signed Int32.
Return Value
Int32The int value.
Remarks This function is useful because Convert.ToInt32 will throw an OverflowException for values greater than Int32.MaxValue.
For example, this function correctly converts unsigned 32-bit integer 4294967295 (i.e., UInt32.MaxValue) to signed 32-bit integer -1.
See Also