Adf.Business.ValueObject.Email.ToString C# (CSharp) Méthode

ToString() public méthode

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