Click or drag to resize

BoolExtensionsGetRandom Method

Returns a random boolean value (true or false)

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

Parameters

ignored
Type: SystemBoolean
This parameter is used only to determine variable type. By the time we have reached this method, the type has already been determined by the runtime and the parameter is no longer needed.

Return Value

Type: Boolean
A boolean containing a random value.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Boolean. 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