Returns a random number between the optional Low and High parameters : Random « Development « VB.Net






Returns a random number between the optional Low and High parameters

   
Public Class MainClass
    Public Shared objRandom As New System.Random(CType(System.DateTime.Now.Ticks Mod System.Int32.MaxValue, Integer))
    Public Shared Function GetRandomNumber(Optional ByVal Low As Integer = 1, Optional ByVal High As Integer = 100) As Integer
        Return objRandom.Next(Low, High + 1)
    End Function

    Public Shared Sub Main()
        Dim intDiceRoll As Integer
        intDiceRoll = GetRandomNumber(1, 6)
        System.Console.WriteLine(intDiceRoll.ToString)
    End Sub
End Class

   
    
    
  








Related examples in the same category

1.Generate a Random NumberGenerate a Random Number
2.Random numberRandom number
3.Generating Random Numbers between the optional Low and High parameters
4.Random Class represents a pseudo-random number generator
5.Generate and display 5 random byte (integer) values
6.Generate and display 5 random integers
7.Generate and display 5 random integers between 0 and 100
8.Generate and display 5 random integers from 50 to 100
9.Generate and display 5 random floating point values from 0 to 1
10.Generate and display 5 random floating point values from 0 to 5
11.Create Random class, using the specified seed value.
12.Random.Next Method returns a nonnegative random number less than the specified maximum.
13.No bound random number
14.Generate random numbers with an upper bound specified
15.Generate random numbers with both bounds specified
16.Random.Next Method (Int32, Int32) returns a random number within a specified range.
17.20 random integers from 1000 to 10000
18.20 random integers from 1 to 10
19.Random.NextBytes fills the elements of a specified array of bytes with random numbers.
20.Random.NextDouble returns a random number between 0.0 and 1.0.
21.Distribution of Random Numbers
22.IPHostEntry: Internet host address information.