Operator Inequality
Inequality(Uuid, Uuid)
Tests whether two
Uuid instances are not equal.
Declaration
public static bool operator !=(Uuid a, Uuid b)
Parameters
Returns
| Type |
Description |
| Boolean |
true, if the Uuid instances do not represent the same value, otherwise false.
|
Inequality(Uuid, Guid)
Tests whether a
Uuid instance and a
Guid instance are not equal.
Declaration
public static bool operator !=(Uuid uuid, Guid guid)
Parameters
| Type |
Name |
Description |
| Uuid |
uuid |
|
| Guid |
guid |
|
Returns
| Type |
Description |
| Boolean |
true, if the provided uuid and guid do not represent the
same value, otherwise false.
|
Inequality(Guid, Uuid)
Tests whether a
Guid instance and a
Uuid instance are not equal.
Declaration
public static bool operator !=(Guid guid, Uuid uuid)
Parameters
| Type |
Name |
Description |
| Guid |
guid |
|
| Uuid |
uuid |
|
Returns
| Type |
Description |
| Boolean |
true, if the provided guid and uuid do not represent the
same value, otherwise false.
|