7 writes to m_length
mscorlib (7)
system\collections\bitarray.cs (7)
52m_length = length; 83m_length = bytes.Length * BitsPerByte; 122m_length = values.Length; 152m_length = values.Length * BitsPerInt32; 172m_length = bits.m_length; 349m_length = value; 412bitArray.m_length = m_length;
17 references to m_length
mscorlib (17)
system\collections\bitarray.cs (17)
170int arrayLength = GetArrayLength(bits.m_length, BitsPerInt32); 172m_length = bits.m_length; 229int ints = GetArrayLength(m_length, BitsPerInt32); 250int ints = GetArrayLength(m_length, BitsPerInt32); 272int ints = GetArrayLength(m_length, BitsPerInt32); 294int ints = GetArrayLength(m_length, BitsPerInt32); 309int ints = GetArrayLength(m_length, BitsPerInt32); 321return m_length; 337if (value > m_length) { 339int last = GetArrayLength(m_length, BitsPerInt32) - 1; 340int bits = m_length % 32; 370Array.Copy(m_array, 0, array, index, GetArrayLength(m_length, BitsPerInt32)); 374int arrayLength = GetArrayLength(m_length, BitsPerByte); 384if (array.Length - index < m_length) 388for (int i = 0;i<m_length;i++) 401return m_length; 412bitArray.m_length = m_length;