2 writes to m_iCount
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeILGenerator.cs (2)
1501
m_iCount
= 0;
1558
checked {
m_iCount
++; }
11 references to m_iCount
System.Private.CoreLib (11)
src\System\Reflection\Emit\RuntimeILGenerator.cs (11)
1511
if (
m_iCount
== 0)
1516
int i =
m_iCount
- 1;
1555
m_ScopeActions[
m_iCount
] = sa;
1556
m_iOffsets[
m_iCount
] = iOffset;
1557
m_localSymInfos[
m_iCount
] = null;
1568
if (
m_iCount
== 0)
1575
else if (
m_iCount
== m_iOffsets.Length)
1579
int newSize = checked(
m_iCount
* 2);
1581
Array.Copy(m_iOffsets, temp,
m_iCount
);
1585
Array.Copy(m_ScopeActions, tempSA,
m_iCount
);
1589
Array.Copy(m_localSymInfos, tempLSI,
m_iCount
);