3 writes to m_currentStrings
mscorlib (3)
system\security\util\tokenizer.cs (3)
863
m_currentStrings
= m_currentStrings.m_next;
874
m_currentStrings
= m_headStrings;
908
m_currentStrings
= m_currentStrings.m_next;
7 references to m_currentStrings
mscorlib (7)
system\security\util\tokenizer.cs (7)
860
if (
m_currentStrings
.m_block.Length <= m_indexStrings)
862
m_currentStrings
.m_next = new TokenizerStringBlock();
863
m_currentStrings =
m_currentStrings
.m_next;
867
m_currentStrings
.m_block[m_indexStrings++] = str;
906
if (
m_currentStrings
.m_block.Length <= m_indexStrings)
908
m_currentStrings =
m_currentStrings
.m_next;
914
return
m_currentStrings
.m_block[m_indexStrings++];