4 writes to _table
PresentationFramework (4)
MS\Internal\UncommonValueTable.cs (4)
41_table = new object[1]; 52_table = newTable; 72_table = null; 79_table = newTable;
9 references to _table
PresentationFramework (9)
MS\Internal\UncommonValueTable.cs (9)
30return (index < 0) ? defaultValue : _table[index]; 39if (_table == null) 46int n = _table.Length; 50Array.Copy(_table, 0, newTable, 0, index); 51Array.Copy(_table, index, newTable, index+1, n-index); 60_table[index] = value; 69int n = _table.Length - 1; 77Array.Copy(_table, 0, newTable, 0, index); 78Array.Copy(_table, index+1, newTable, index, n-index);