Fan.Sys.FanDecimal.equals C# (CSharp) Méthode

equals() public static méthode

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