< Dice | RollResult
Difference between revisions of "Dice/RollResult/operator !="
From DiceRoller Documentation
(Created page with "{{APIdoc|1=RollResult.operator != Method (RollResult, RollResult)}} Compare two RollResults and return whether or not they are not equal. Implements RollResult != RollResult....") |
(No difference)
|
Latest revision as of 17:38, 25 April 2017
Compare two RollResults and return whether or not they are not equal. Implements RollResult != RollResult.
- Namespace: Dice
- Assembly: DiceRoller (in DiceRoller.dll)
Syntax
public static bool operator !=(
RollResult a,
RollResult b
)
Parameters
- a
- Type: Dice.RollResult
- The first RollResult to compare.
- b
- Type: Dice.RollResult
- The second RollResult to compare.
Return Value
Type: System.Boolean
true
if a and b are not equal, and false
otherwise.
Remarks
This method calls a.Equals(b) internally. See that method documentation for more information on how the comparison is performed.