Operator operator !=
- Namespace
- GuildWars2
- Assembly
- GuildWars2.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
leftExtensible<TEnum>The first Extensible object to compare.
rightExtensible<TEnum>The second Extensible object to compare.
Returns
- bool
trueif 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
leftExtensible<TEnum>The first Extensible object to compare.
rightTEnumThe second Extensible object to compare.
Returns
- bool
trueif 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
leftExtensible<TEnum>The first Extensible object to compare.
rightstringThe second Extensible object to compare.
Returns
- bool
trueif the two objects are not equal; otherwise,false.