Redzen.Structures.Compact.FixedPointDecimal.operator C# (CSharp) Method

operator() public static method

Determines if two FixedPointDecimal objects are not equal.
public static operator ( ) : bool
return bool
        public static bool operator !=(FixedPointDecimal d1, FixedPointDecimal d2)
        {
            return !Equals (d1, d2);
        }