Operator implicit operator
implicit operator FunctionPointer(PersistentFunctionPointer)
Converts a PersistentFunctionPointer to a FunctionPointer.
Declaration
public static implicit operator FunctionPointer(PersistentFunctionPointer pointer)
Parameters
| Type | Name | Description |
|---|---|---|
| PersistentFunctionPointer | pointer | The PersistentFunctionPointer to convert. |
Returns
| Type | Description |
|---|---|
| FunctionPointer | A FunctionPointer pointing to the same target function as the specified PersistentFunctionPointer. |
implicit operator NullableFunctionPointer(PersistentFunctionPointer)
Converts a PersistentFunctionPointer to a NullableFunctionPointer.
Declaration
public static implicit operator NullableFunctionPointer(PersistentFunctionPointer pointer)
Parameters
| Type | Name | Description |
|---|---|---|
| PersistentFunctionPointer | pointer | The PersistentFunctionPointer to convert. |
Returns
| Type | Description |
|---|---|
| NullableFunctionPointer | A NullableFunctionPointer pointing to the same target function as the specified PersistentFunctionPointer. |
implicit operator NullablePersistentFunctionPointer(PersistentFunctionPointer)
Converts a PersistentFunctionPointer to a NullablePersistentFunctionPointer.
Declaration
public static implicit operator NullablePersistentFunctionPointer(PersistentFunctionPointer pointer)
Parameters
| Type | Name | Description |
|---|---|---|
| PersistentFunctionPointer | pointer | The PersistentFunctionPointer to convert. |
Returns
| Type | Description |
|---|---|
| NullablePersistentFunctionPointer | A NullablePersistentFunctionPointer pointing to the same target function as the specified PersistentFunctionPointer. |