5 references to _stringLength
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\String.Comparison.cs (2)
696return Marvin.ComputeHash32(ref Unsafe.As<char, byte>(ref _firstChar), (uint)_stringLength * 2 /* in bytes, not chars */, (uint)seed, (uint)(seed >> 32)); 707return Marvin.ComputeHash32OrdinalIgnoreCase(ref _firstChar, _stringLength /* in chars, not bytes */, (uint)seed, (uint)(seed >> 32));
src\runtime\src\libraries\System.Private.CoreLib\src\System\String.cs (2)
737if ((uint)index >= (uint)_stringLength) 753get => _stringLength;
System\String.NativeAot.cs (1)
33Debug.Assert(newStr._stringLength == length);