 | StringExtensions.GetRandomEmailAddress 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
Syntaxpublic static string GetRandomEmailAddress(
this string ignored
)
<ExtensionAttribute>
Public Shared Function GetRandomEmailAddress (
ignored As String
) As String
public:
[ExtensionAttribute]
static String^ GetRandomEmailAddress(
String^ ignored
)
[<ExtensionAttribute>]
static member GetRandomEmailAddress :
ignored : string -> string
Parameters
- ignored
- Type: System.String
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:
StringThe 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