CULong Constructors

Definition

Overloads

CULong(UInt32)

Constructs an instance from a 32-bit unsigned integer.

CULong(UIntPtr)

Constructs an instance from a native sized unsigned integer.

CULong(UInt32)

Source:
CULong.cs
Source:
CULong.cs
Source:
CULong.cs

Constructs an instance from a 32-bit unsigned integer.

public:
 CULong(System::UInt32 value);
public CULong (uint value);
new System.Runtime.InteropServices.CULong : uint32 -> System.Runtime.InteropServices.CULong
Public Sub New (value As UInteger)

Parameters

value
UInt32

The integer value.

Applies to

CULong(UIntPtr)

Source:
CULong.cs
Source:
CULong.cs
Source:
CULong.cs

Constructs an instance from a native sized unsigned integer.

public:
 CULong(UIntPtr value);
public CULong (nuint value);
public CULong (UIntPtr value);
new System.Runtime.InteropServices.CULong : unativeint -> System.Runtime.InteropServices.CULong
Public Sub New (value As UIntPtr)

Parameters

value
UIntPtr

nuint

unativeint

The integer value.

Exceptions

value is outside the range of the underlying storage type.

Applies to