Click or drag to resize

BitwiseCastToInt32 Method

Performs proper bitwise conversion between unsigned and signed value

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public static int ToInt32(
	uint unsignedInt
)
View Source

Parameters

unsignedInt  UInt32
Unsigned integer that is passed in to be converted to a signed Int32.

Return Value

Int32
The 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