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)
30
return (index < 0) ? defaultValue :
_table
[index];
39
if (
_table
== null)
46
int n =
_table
.Length;
50
Array.Copy(
_table
, 0, newTable, 0, index);
51
Array.Copy(
_table
, index, newTable, index+1, n-index);
60
_table
[index] = value;
69
int n =
_table
.Length - 1;
77
Array.Copy(
_table
, 0, newTable, 0, index);
78
Array.Copy(
_table
, index+1, newTable, index, n-index);