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.300-beta+b2186e2cd1f968c931b0e151fdd7c839f3d1e9cf
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