Operator implicit operator
- Namespace
- GuildWars2
- Assembly
- GW2SDK.dll
implicit operator int(Coin)
Implicitly converts a Coin value to an int value.
public static implicit operator int(Coin coin)
Parameters
coin
Coin
The Coin value.
Returns
- int
The int value representing the amount of coins.
implicit operator Coin(int)
Implicitly converts an int value to a Coin value.
public static implicit operator Coin(int quantity)
Parameters
quantity
int
The int value representing the amount of coins.
Returns
- Coin
The Coin value.