2 writes to m_iCount
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeILGenerator.cs (2)
1495
m_iCount
= 0;
1552
checked {
m_iCount
++; }
11 references to m_iCount
System.Private.CoreLib (11)
src\System\Reflection\Emit\RuntimeILGenerator.cs (11)
1505
if (
m_iCount
== 0)
1510
int i =
m_iCount
- 1;
1549
m_ScopeActions[
m_iCount
] = sa;
1550
m_iOffsets[
m_iCount
] = iOffset;
1551
m_localSymInfos[
m_iCount
] = null;
1562
if (
m_iCount
== 0)
1569
else if (
m_iCount
== m_iOffsets.Length)
1573
int newSize = checked(
m_iCount
* 2);
1575
Array.Copy(m_iOffsets, temp,
m_iCount
);
1579
Array.Copy(m_ScopeActions, tempSA,
m_iCount
);
1583
Array.Copy(m_localSymInfos, tempLSI,
m_iCount
);