4 writes to _table
PresentationFramework (4)
MS\Internal\UncommonValueTable.cs (4)
42_table = new object[1]; 53_table = newTable; 73_table = null; 80_table = newTable;
9 references to _table
PresentationFramework (9)
MS\Internal\UncommonValueTable.cs (9)
31return (index < 0) ? defaultValue : _table[index]; 40if (_table == null) 47int n = _table.Length; 51Array.Copy(_table, 0, newTable, 0, index); 52Array.Copy(_table, index, newTable, index+1, n-index); 61_table[index] = value; 70int n = _table.Length - 1; 78Array.Copy(_table, 0, newTable, 0, index); 79Array.Copy(_table, index+1, newTable, index, n-index);