Beispiel #1
0
 public bool Equals(SourceField other)
 {
     return(other != null &&
            Index == other.Index &&
            string.Equals(Name, other.Name) &&
            NumberFmtId == other.NumberFmtId &&
            AggregationFunc == other.AggregationFunc &&
            string.Equals(AggregationFormula, other.AggregationFormula) &&
            SharedItems.Equals(Items, other.Items));
 }