Operator operator !=
- Namespace
- GuildWars2
- Assembly
- GW2SDK.dll
operator !=(Extensible<TEnum>, Extensible<TEnum>)
Determines whether two enums are not equal.
public static bool operator !=(Extensible<TEnum> left, 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 !=(Extensible<TEnum>, TEnum)
Determines whether two enums are not equal.
public static bool operator !=(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 !=(Extensible<TEnum>, string)
Determines whether two enums are not equal.
public static bool operator !=(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
.