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

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

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

            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 StringHashtableEnumerator(StringHashtable enumerable)
 {
     innerEnumerator = enumerable.InnerHash.GetEnumerator();
 }
示例#6
0
        public StringHashtable Clone()
        {
            StringHashtable clone = new StringHashtable();
            clone.innerHash = (Hashtable) innerHash.Clone();

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

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