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)
31
return (index < 0) ? defaultValue :
_table
[index];
40
if (
_table
== null)
47
int n =
_table
.Length;
51
Array.Copy(
_table
, 0, newTable, 0, index);
52
Array.Copy(
_table
, index, newTable, index+1, n-index);
61
_table
[index] = value;
70
int n =
_table
.Length - 1;
78
Array.Copy(
_table
, 0, newTable, 0, index);
79
Array.Copy(
_table
, index+1, newTable, index, n-index);