示例#1
0
 public bool Equals(IXLNumberFormatBase other)
 {
     return
         (_numberFormatId == other.NumberFormatId &&
          _format == other.Format
         );
 }
        public bool Equals(IXLNumberFormatBase other)
        {
            var otherN = other as XLNumberFormat;

            if (otherN == null)
            {
                return(false);
            }

            return(Key == otherN.Key);
        }