3 writes to m_StringHeapByteLength
mscorlib (3)
system\rttype.cs (3)
5890m_StringHeapByteLength = GetUtf8StringByteLength(pStringHeap); 5894m_StringHeapByteLength = 0; 5902m_StringHeapByteLength = cUtf8String;
16 references to m_StringHeapByteLength
mscorlib (16)
system\rttype.cs (16)
5910return s.m_StringHeapByteLength == 0; 5912if ((s.m_StringHeapByteLength == m_StringHeapByteLength) && (m_StringHeapByteLength != 0)) 5914return Utf8String.EqualsCaseSensitive(s.m_pStringHeap, m_pStringHeap, m_StringHeapByteLength); 5924return s.m_StringHeapByteLength == 0; 5926if ((s.m_StringHeapByteLength == m_StringHeapByteLength) && (m_StringHeapByteLength != 0)) 5928return Utf8String.EqualsCaseInsensitive(s.m_pStringHeap, m_pStringHeap, m_StringHeapByteLength); 5936return Utf8String.HashCaseInsensitive(m_pStringHeap, m_StringHeapByteLength); 5944byte* buf = stackalloc byte[m_StringHeapByteLength]; 5947for (int currentPos = 0; currentPos < m_StringHeapByteLength; currentPos++) 5953if (m_StringHeapByteLength == 0) 5956int cResult = Encoding.UTF8.GetCharCount(buf, m_StringHeapByteLength); 5958Encoding.UTF8.GetChars(buf, m_StringHeapByteLength, result, cResult);