Adf.Business.ValueObject.Email.New C# (CSharp) Method

New() public static method

Creates a new empty Email object using the specified initial e-mail address.
public static New ( string value ) : Email
value string The initial e-mail address.
return Email
        public static Email New(string value)
        {
            return new Email(value);
        }

Same methods

Email::New ( ) : Email