コード例 #1
0
ファイル: Hashtable.cs プロジェクト: fssamu/Templates
        public static IntegerHashtable Synchronized(IntegerHashtable nonSync)
        {
            IntegerHashtable sync = new IntegerHashtable();

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

            return(sync);
        }
コード例 #2
0
ファイル: Hashtable.cs プロジェクト: fssamu/Templates
        public IntegerHashtable Clone()
        {
            IntegerHashtable clone = new IntegerHashtable();

            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
ファイル: EntryPoint.cs プロジェクト: mattfrerichs/Templates
        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
ファイル: Hashtable.cs プロジェクト: mattfrerichs/Templates
 internal IntegerHashtableEnumerator(IntegerHashtable enumerable)
 {
     innerEnumerator = enumerable.InnerHash.GetEnumerator();
 }
コード例 #6
0
ファイル: Hashtable.cs プロジェクト: mattfrerichs/Templates
 public IntegerHashtable(IntegerHashtable original)
 {
     innerHash = new Hashtable (original.innerHash);
 }
コード例 #7
0
ファイル: Hashtable.cs プロジェクト: mattfrerichs/Templates
        public IntegerHashtable Clone()
        {
            IntegerHashtable clone = new IntegerHashtable();
            clone.innerHash = (Hashtable) innerHash.Clone();

            return clone;
        }
コード例 #8
0
ファイル: Hashtable.cs プロジェクト: mattfrerichs/Templates
        public static IntegerHashtable Synchronized(IntegerHashtable nonSync)
        {
            IntegerHashtable sync = new IntegerHashtable();
            sync.innerHash = Hashtable.Synchronized(nonSync.innerHash);

            return sync;
        }
コード例 #9
0
ファイル: Hashtable.cs プロジェクト: fssamu/Templates
 internal IntegerHashtableEnumerator(IntegerHashtable enumerable)
 {
     innerEnumerator = enumerable.InnerHash.GetEnumerator();
 }
コード例 #10
0
ファイル: Hashtable.cs プロジェクト: fssamu/Templates
 public IntegerHashtable(IntegerHashtable original)
 {
     innerHash = new Hashtable(original.innerHash);
 }