public static StringHashtable Synchronized(StringHashtable nonSync) { StringHashtable sync = new StringHashtable(); sync.innerHash = Hashtable.Synchronized(nonSync.innerHash); return(sync); }
public StringHashtable Clone() { StringHashtable clone = new StringHashtable(); clone.innerHash = (Hashtable)innerHash.Clone(); return(clone); }
public static void Main(string[] args) { StringHashtable stringhashtable = new StringHashtable(); StringIntegerHashtable stringinthashtable = new StringIntegerHashtable(); IntegerHashtable inthashtable = new IntegerHashtable(); Product product = new Product("BG-01"); Supplier supplier = new Supplier(); }
internal StringHashtableEnumerator(StringHashtable enumerable) { innerEnumerator = enumerable.InnerHash.GetEnumerator(); }
public StringHashtable Clone() { StringHashtable clone = new StringHashtable(); clone.innerHash = (Hashtable) innerHash.Clone(); return clone; }
public static StringHashtable Synchronized(StringHashtable nonSync) { StringHashtable sync = new StringHashtable(); sync.innerHash = Hashtable.Synchronized(nonSync.innerHash); return sync; }
public StringHashtable(StringHashtable original) { innerHash = new Hashtable (original.innerHash); }
public StringHashtable(StringHashtable original) { innerHash = new Hashtable(original.innerHash); }