< Dice‎ | RollResult
Revision as of 17:38, 25 April 2017 by Skizzerz (talk | contribs) (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....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

RollResult.operator != Method (RollResult, RollResult)

From DiceRoller Documentation

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.