Esempio n. 1
0
 internal void SetNameAndExtrasFrom(BaseBuilder source)
 {
     this.Name   = source.Name;
     this.Extras = source.Extras.DeepClone();
 }
Esempio n. 2
0
 public BaseBuilder(BaseBuilder other)
 {
     this.Name   = other.Name;
     this.Extras = other.Extras.DeepClone();
 }
Esempio n. 3
0
 protected static int GetContentHashCode(BaseBuilder x)
 {
     return(x?.Name?.GetHashCode() ?? 0);
 }
Esempio n. 4
0
 protected static int GetContentHashCode(BaseBuilder x)
 {
     return(x?.Name?.GetHashCode(StringComparison.InvariantCulture) ?? 0);
 }