Click or drag to resize

StringExtensionsGetRandomEmailAddress Method

Returns a random string in a format representing an email address.

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

Parameters

ignored
Type: SystemString
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: String
The resulting random email address.

Usage Note

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