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

operator() public static method

Returns the inequality of two Email objects.
public static operator ( ) : bool
return bool
        public static bool operator !=(Email i, Email j)
        {
            return !(i == j);
        }