Method FromIntPtr
FromIntPtr(nint)
Creates a NullablePointer<T> from a memory address given as a nint.
Declaration
public static NullablePointer<T> FromIntPtr(nint value)
Parameters
| Type | Name | Description |
|---|---|---|
| nint | value | The memory address to create a NullablePointer<T> from. |
Returns
| Type | Description |
|---|---|
| NullablePointer<T> | A NullablePointer<T> that points to the same memory address as the specified |