Operator explicit operator
explicit operator FunctionPointer(SequencePointer)
Converts a SequencePointer to a FunctionPointer.
Declaration
public static explicit operator FunctionPointer(SequencePointer pointer)
Parameters
| Type | Name | Description |
|---|---|---|
| SequencePointer | pointer | The SequencePointer to convert. |
Returns
| Type | Description |
|---|---|
| FunctionPointer | A FunctionPointer pointing to the target function that's the same target as the specified SequencePointer, reinterpreted as an executable function. |
explicit operator NullableFunctionPointer(SequencePointer)
Converts a SequencePointer to a NullableFunctionPointer.
Declaration
public static explicit operator NullableFunctionPointer(SequencePointer pointer)
Parameters
| Type | Name | Description |
|---|---|---|
| SequencePointer | pointer | The SequencePointer to convert. |
Returns
| Type | Description |
|---|---|
| NullableFunctionPointer | A NullableFunctionPointer pointing to the target function that's the same target as the specified SequencePointer, reinterpreted as an executable function. |