SafeRandom.Next Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Next() | |
Next(Int32) | |
Next(Int32, Int32) |
Next()
- Source:
- SafeRandom.cs
public int Next ();
member this.Next : unit -> int
Public Function Next () As Integer
Returns
Applies to
Next(Int32)
- Source:
- SafeRandom.cs
public int Next (int maxValue);
member this.Next : int -> int
Public Function Next (maxValue As Integer) As Integer
Parameters
- maxValue
- Int32
Returns
Applies to
Next(Int32, Int32)
- Source:
- SafeRandom.cs
public int Next (int minValue, int maxValue);
member this.Next : int * int -> int
Public Function Next (minValue As Integer, maxValue As Integer) As Integer
Parameters
- minValue
- Int32
- maxValue
- Int32