Difference between revisions of "Dice/DieResult/NumSides"

From DiceRoller Documentation
m
Line 6: Line 6:
 
== Syntax ==
 
== Syntax ==
 
<syntaxhighlight lang="C#">
 
<syntaxhighlight lang="C#">
public uint Numsides
+
public int Numsides
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
=== Field Value ===
 
=== Field Value ===
Type: System.UInt32
+
Type: System.Int32
  
 
How many sides the die had.
 
How many sides the die had.

Revision as of 18:56, 13 April 2017

If the DieResult represents a die roll, this is the number of sides that die had.

  • Namespace: Dice
  • Assembly: DiceRoller (in DiceRoller.dll)

Syntax

public int Numsides

Field Value

Type: System.Int32

How many sides the die had.

Remarks

If the die did not represent a roll, this will be 0. For fudge dice, this is the maximum possible value rolled (so 1dF would have NumSides of 1, even though there are 3 possible results).