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)
32
return (index < 0) ? defaultValue :
_table
[index];
41
if (
_table
== null)
48
int n =
_table
.Length;
52
Array.Copy(
_table
, 0, newTable, 0, index);
53
Array.Copy(
_table
, index, newTable, index+1, n-index);
62
_table
[index] = value;
71
int n =
_table
.Length - 1;
79
Array.Copy(
_table
, 0, newTable, 0, index);
80
Array.Copy(
_table
, index+1, newTable, index, n-index);