示例#1
0
        public static StringIntegerHashtable Synchronized(StringIntegerHashtable nonSync)
        {
            StringIntegerHashtable sync = new StringIntegerHashtable();

            sync.innerHash = Hashtable.Synchronized(nonSync.innerHash);

            return(sync);
        }
示例#2
0
        public StringIntegerHashtable Clone()
        {
            StringIntegerHashtable clone = new StringIntegerHashtable();

            clone.innerHash = (Hashtable)innerHash.Clone();

            return(clone);
        }
示例#3
0
        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();
        }
示例#4
0
        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();
        }
示例#5
0
 internal StringIntegerHashtableEnumerator(StringIntegerHashtable enumerable)
 {
     innerEnumerator = enumerable.InnerHash.GetEnumerator();
 }
示例#6
0
        public StringIntegerHashtable Clone()
        {
            StringIntegerHashtable clone = new StringIntegerHashtable();
            clone.innerHash = (Hashtable) innerHash.Clone();

            return clone;
        }
示例#7
0
        public static StringIntegerHashtable Synchronized(StringIntegerHashtable nonSync)
        {
            StringIntegerHashtable sync = new StringIntegerHashtable();
            sync.innerHash = Hashtable.Synchronized(nonSync.innerHash);

            return sync;
        }
示例#8
0
 public StringIntegerHashtable(StringIntegerHashtable original)
 {
     innerHash = new Hashtable (original.innerHash);
 }
示例#9
0
 internal StringIntegerHashtableEnumerator(StringIntegerHashtable enumerable)
 {
     innerEnumerator = enumerable.InnerHash.GetEnumerator();
 }
示例#10
0
 public StringIntegerHashtable(StringIntegerHashtable original)
 {
     innerHash = new Hashtable(original.innerHash);
 }