2 writes to m_DataTable
mscorlib (2)
system\_localdatastore.cs (2)
103m_DataTable = new LocalDataStoreElement[InitialCapacity]; 229m_DataTable = NewDataTable;
15 references to m_DataTable
mscorlib (15)
system\_localdatastore.cs (15)
128if (slotIdx >= m_DataTable.Length) 132LocalDataStoreElement element = m_DataTable[slotIdx]; 162LocalDataStoreElement element = (slotIdx < m_DataTable.Length) ? m_DataTable[slotIdx] : null; 191if (slot >= m_DataTable.Length) 194LocalDataStoreElement element = m_DataTable[slot]; 196m_DataTable[slot] = null; 215if (slotIdx >= m_DataTable.Length) 220Contract.Assert(capacity >= m_DataTable.Length, "LocalDataStore corrupted: capacity >= m_DataTable.Length"); 226Array.Copy(m_DataTable, NewDataTable, m_DataTable.Length); 233Contract.Assert(slotIdx < m_DataTable.Length, "LocalDataStore corrupted: slotIdx < m_DataTable.Length"); 235if (m_DataTable[slotIdx] == null) 236m_DataTable[slotIdx] = new LocalDataStoreElement(slot.Cookie); 238return m_DataTable[slotIdx];