public override object Clone() { FuzzyHash fh = new FuzzyHash(defaultValue); object Value; foreach (object Key in fh.Keys) { Value = fh[Key]; fh.Add(Dup(Key), Dup(Value)); } return(fh); }
public override void Clone(FuzzyObject source) { base.Clone(source); FuzzyHash S = source as FuzzyHash; if (S != null) { Clear(); foreach (object key in S.Keys) { Add(Dup(key), Dup(S[key])); } } }
public FuzzyHashDebugView(FuzzyHash hashtable) { this.hashtable = hashtable; }