CodeSharp.EventSourcing.Address.operator C# (CSharp) Method

operator() public static method

Overloading for the != for the class Address
public static operator ( ) : bool
return bool
        public static bool operator !=(Address left, Address right)
        {
            return !Equals(left, right);
        }