2 writes to m_values
mscorlib (2)
system\runtime\serialization\objectmanager.cs (2)
1734
m_values
= new ObjectHolder[startingSize];
1761
m_values
= temp;
7 references to m_values
mscorlib (7)
system\runtime\serialization\objectmanager.cs (7)
1738
if (m_count==
m_values
.Length) {
1741
m_values
[m_count++]=value;
1750
BCLDebug.Trace("SER", "[ObjectHolderList.EnlargeArray]Enlarging array of size ",
m_values
.Length);
1751
int newLength =
m_values
.Length*2;
1760
Array.Copy(
m_values
, temp, m_count);
1794
while (++m_currPos < m_list.Count && m_list.
m_values
[m_currPos].CompletelyFixed) {
1814
return m_list.
m_values
[m_currPos];