Operator operator ==
operator ==(Pointer<T>, Pointer<T>)
Compares two values to determine equality.
Declaration
public static bool operator ==(Pointer<T> left, Pointer<T> right)
Parameters
| Type | Name | Description |
|---|---|---|
| Pointer<T> | left | The value to compare with |
| Pointer<T> | right | The value to compare with |
Returns
| Type | Description |
|---|---|
| bool |
operator ==(Pointer<T>, NullablePointerReadOnly)
Compares two values to determine equality.
Declaration
public static bool operator ==(Pointer<T> left, NullablePointerReadOnly right)
Parameters
| Type | Name | Description |
|---|---|---|
| Pointer<T> | left | The value to compare with |
| NullablePointerReadOnly | right | The value to compare with |
Returns
| Type | Description |
|---|---|
| bool |
operator ==(Pointer<T>, NullablePointerUninitialized)
Compares two values to determine equality.
Declaration
public static bool operator ==(Pointer<T> left, NullablePointerUninitialized right)
Parameters
| Type | Name | Description |
|---|---|---|
| Pointer<T> | left | The value to compare with |
| NullablePointerUninitialized | right | The value to compare with |
Returns
| Type | Description |
|---|---|
| bool |
operator ==(Pointer<T>, NullableFunctionPointer)
Compares two values to determine equality.
Declaration
public static bool operator ==(Pointer<T> left, NullableFunctionPointer right)
Parameters
| Type | Name | Description |
|---|---|---|
| Pointer<T> | left | The value to compare with |
| NullableFunctionPointer | right | The value to compare with |
Returns
| Type | Description |
|---|---|
| bool |