public static IntegerHashtable Synchronized(IntegerHashtable nonSync) { IntegerHashtable sync = new IntegerHashtable(); sync.innerHash = Hashtable.Synchronized(nonSync.innerHash); return(sync); }
public IntegerHashtable Clone() { IntegerHashtable clone = new IntegerHashtable(); 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 IntegerHashtableEnumerator(IntegerHashtable enumerable) { innerEnumerator = enumerable.InnerHash.GetEnumerator(); }
public IntegerHashtable(IntegerHashtable original) { innerHash = new Hashtable (original.innerHash); }
public IntegerHashtable Clone() { IntegerHashtable clone = new IntegerHashtable(); clone.innerHash = (Hashtable) innerHash.Clone(); return clone; }
public static IntegerHashtable Synchronized(IntegerHashtable nonSync) { IntegerHashtable sync = new IntegerHashtable(); sync.innerHash = Hashtable.Synchronized(nonSync.innerHash); return sync; }
public IntegerHashtable(IntegerHashtable original) { innerHash = new Hashtable(original.innerHash); }