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

ToString() public method

Returns a string that represents the current Email.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.IsNullOrEmpty(value) ? string.Empty : value;
        }