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

operator() public static method

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