Method FromRaw
FromRaw(void*)
Creates a NullableFunctionPointer from a raw pointer.
Declaration
public static NullableFunctionPointer FromRaw(void* raw)
Parameters
| Type | Name | Description |
|---|---|---|
| void* | raw | The raw pointer specifying the target function that the resulting NullableFunctionPointer will point to. |
Returns
| Type | Description |
|---|---|
| NullableFunctionPointer | A NullableFunctionPointer that points to the same target function as the specified |
Implements
Remarks
The raw pointer may be null. If it is, the resulting NullableFunctionPointer will represent a null pointer.
The resulting NullableFunctionPointer will point to the same target function as raw.