示例#1
0
 public bool Equals(ColorMapMemento other)
 {
     return(other != null && _originator.Equals(other._originator));
 }
示例#2
0
 public bool Equals(ColorMapMemento other)
 {
     return(other != null && _originator.Equals(other._originator) && Equals(_innerMemento, other._innerMemento));
 }
 public bool Equals(CustomAlphaColorMapKey other)
 {
     return(_colorMap.Equals(other._colorMap) && _alpha.Equals(other._alpha) && _thresholding.Equals(other._thresholding));
 }