2 writes to m_capacity
mscorlib (2)
system\io\pathhelper.cs (2)
72this.m_capacity = length; 87this.m_capacity = capacity;
6 references to m_capacity
mscorlib (6)
system\io\pathhelper.cs (6)
113return m_capacity; 142if (Length + 1 >= m_capacity) 195StringBuilder finalBuffer = new StringBuilder(m_capacity + 1); 196int result = Win32Native.GetFullPathName(m_sb.ToString(), m_capacity + 1, finalBuffer, IntPtr.Zero); 281sb.Capacity = m_capacity; 283int r = Win32Native.GetLongPathName(tempName, sb, m_capacity);