Operator operator !=
- Namespace
- GuildWars2
- Assembly
- GW2SDK.dll
operator !=(in Extensible<TEnum>, in Extensible<TEnum>)
Determines whether two enums are not equal.
public static bool operator !=(in Extensible<TEnum> left, in Extensible<TEnum> right)
Parameters
left
Extensible<TEnum>The first Extensible object to compare.
right
Extensible<TEnum>The second Extensible object to compare.
Returns
- bool
true
if the two objects are not equal; otherwise,false
.
operator !=(in Extensible<TEnum>, TEnum)
Determines whether two enums are not equal.
public static bool operator !=(in Extensible<TEnum> left, TEnum right)
Parameters
left
Extensible<TEnum>The first Extensible object to compare.
right
TEnumThe second Extensible object to compare.
Returns
- bool
true
if the two objects are not equal; otherwise,false
.
operator !=(in Extensible<TEnum>, string)
Determines whether two enums are not equal.
public static bool operator !=(in Extensible<TEnum> left, string right)
Parameters
left
Extensible<TEnum>The first Extensible object to compare.
right
stringThe second Extensible object to compare.
Returns
- bool
true
if the two objects are not equal; otherwise,false
.