Fan.Sys.FanDecimal.equals C# (CSharp) Method

equals() public static method

public static equals ( BigDecimal self, object obj ) : bool
self BigDecimal
obj object
return bool
        public static bool equals(BigDecimal self, object obj)
        {
            if (obj is BigDecimal)
              {
            return self.Equals(obj);
              }
              return false;
        }