2 writes to m_length
mscorlib (2)
system\unsafecharbuffer.cs (2)
32
m_length
= 0;
49
m_length
+= stringToAppend.Length;
4 references to m_length
mscorlib (4)
system\unsafecharbuffer.cs (4)
41
if ( (m_totalSize -
m_length
) < stringToAppend.Length ) {
46
Buffer.Memcpy( (byte*) (m_buffer +
m_length
), (byte *) pointerToString, stringToAppend.Length * sizeof(char));
50
Contract.Assert(
m_length
<= m_totalSize, "Buffer has been overflowed!");
55
return
m_length
;