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

operator() public static method

Returns the inequality of the two supplied Postcodes.
public static operator ( ) : bool
return bool
        public static bool operator !=(Postcode i, Postcode j)
        {
            return (i.value != j.value);
        }