VBMath Class
The VbMath module contains procedures used to perform mathematical operations.
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() ![]() | Randomize() | Initializes the random-number generator. |
![]() ![]() | Randomize(Double) | Initializes the random-number generator. |
![]() ![]() | Rnd() | Returns a random number of type Single. |
![]() ![]() | Rnd(Single) | Returns a random number of type Single. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
This module supports the Visual Basic language keywords and run-time library members for generating random numbers.
This example uses the Rnd function to generate a random integer value in the range from 1 to 6.
' Initialize the random-number generator. Randomize() ' Generate random value between 1 and 6. Dim value As Integer = CInt(Int((6 * Rnd()) + 1))
Available since 1.1
Silverlight
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

