iTextSharp.text.pdf.IntHashtable.Clone C# (CSharp) Метод

Clone() публичный Метод

public Clone ( ) : IntHashtable
Результат IntHashtable
        public IntHashtable Clone() {
            IntHashtable t = new IntHashtable();
            t.count = count;
            t.loadFactor = loadFactor;
            t.threshold = threshold;
            t.table = new IntHashtableEntry[table.Length];
            for (int i = table.Length ; i-- > 0 ; ) {
                t.table[i] = (table[i] != null)
                ? (IntHashtableEntry)table[i].Clone() : null;
            }
            return t;
        }