Exemple #1
0
 protected bool Equals(AutoSpatialOptions other)
 {
     return(base.Equals(other) && MethodType == other.MethodType && MethodArguments.SequenceEqual(other.MethodArguments));
 }
Exemple #2
0
 public AutoSpatialOptions(AutoSpatialOptions options)
     : base(options)
 {
     MethodType      = options.MethodType;
     MethodArguments = new List <string>(options.MethodArguments);
 }