4 writes to _table
PresentationFramework (4)
MS\Internal\UncommonValueTable.cs (4)
43_table = new object[1]; 54_table = newTable; 74_table = null; 81_table = newTable;
9 references to _table
PresentationFramework (9)
MS\Internal\UncommonValueTable.cs (9)
32return (index < 0) ? defaultValue : _table[index]; 41if (_table == null) 48int n = _table.Length; 52Array.Copy(_table, 0, newTable, 0, index); 53Array.Copy(_table, index, newTable, index+1, n-index); 62_table[index] = value; 71int n = _table.Length - 1; 79Array.Copy(_table, 0, newTable, 0, index); 80Array.Copy(_table, index+1, newTable, index, n-index);