CULong Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.