Click or drag to resize

IntExtensionsGetRandom Method (Int32)

Returns a random number greater than or equal to 0 and less than the integer

Namespace:  TestHelperExtensions
Assembly:  CBI.TestHelperExtensions (in CBI.TestHelperExtensions.dll) Version: 2.1.0.1
Syntax
public static int GetRandom(
	this int maxValue
)

Parameters

maxValue
Type: SystemInt32
The non-inclusive maximum integer value for the random number

Return Value

Type: Int32
A random integer

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Int32. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also