Operator implicit operator
implicit operator NullablePointer(NullablePointer<T>)
Converts a NullablePointer<T> to a NullablePointer.
Declaration
public static implicit operator NullablePointer(NullablePointer<T> pointer)
Parameters
| Type | Name | Description |
|---|---|---|
| NullablePointer<T> | pointer | The NullablePointer<T> to convert. |
Returns
| Type | Description |
|---|---|
| NullablePointer | A NullablePointer pointing to the same target as the specified NullablePointer<T>. |
implicit operator NullablePointerReadOnly(NullablePointer<T>)
Converts a NullablePointer<T> to a NullablePointerReadOnly.
Declaration
public static implicit operator NullablePointerReadOnly(NullablePointer<T> pointer)
Parameters
| Type | Name | Description |
|---|---|---|
| NullablePointer<T> | pointer | The NullablePointer<T> to convert. |
Returns
| Type | Description |
|---|---|
| NullablePointerReadOnly | A NullablePointerReadOnly pointing to the same target as the specified NullablePointer<T>. |
implicit operator NullablePointerReadOnly<T>(NullablePointer<T>)
Converts a NullablePointer<T> to a NullablePointerReadOnly<T>.
Declaration
public static implicit operator NullablePointerReadOnly<T>(NullablePointer<T> pointer)
Parameters
| Type | Name | Description |
|---|---|---|
| NullablePointer<T> | pointer | The NullablePointer<T> to convert. |
Returns
| Type | Description |
|---|---|
| NullablePointerReadOnly<T> | A NullablePointerReadOnly<T> pointing to the same target as the specified NullablePointer<T>. |
implicit operator NullablePointerUninitialized(NullablePointer<T>)
Converts a NullablePointer<T> to a NullablePointerUninitialized.
Declaration
public static implicit operator NullablePointerUninitialized(NullablePointer<T> pointer)
Parameters
| Type | Name | Description |
|---|---|---|
| NullablePointer<T> | pointer | The NullablePointer<T> to convert. |
Returns
| Type | Description |
|---|---|
| NullablePointerUninitialized | A NullablePointerUninitialized pointing to the same target as the specified NullablePointer<T>. |
implicit operator NullablePointerUninitialized<T>(NullablePointer<T>)
Converts a NullablePointer<T> to a NullablePointerUninitialized<T>.
Declaration
public static implicit operator NullablePointerUninitialized<T>(NullablePointer<T> pointer)
Parameters
| Type | Name | Description |
|---|---|---|
| NullablePointer<T> | pointer | The NullablePointer<T> to convert. |
Returns
| Type | Description |
|---|---|
| NullablePointerUninitialized<T> | A NullablePointerUninitialized<T> pointing to the same target as the specified NullablePointer<T>. |