Method FromIntPtr
FromIntPtr(nint)
Creates a SequencePointerUninitialized from a memory address given as a nint.
Declaration
public static SequencePointerUninitialized FromIntPtr(nint value)
Parameters
| Type | Name | Description |
|---|---|---|
| nint | value | The memory address to create a SequencePointerUninitialized from. |
Returns
| Type | Description |
|---|---|
| SequencePointerUninitialized | A SequencePointerUninitialized that points to the same memory address as the specified |
Implements
Remarks
The value must not be 0. If it is, an ArgumentNullException will be thrown.
Exceptions
| Type | Condition |
|---|---|
| ArgumentNullException |
|