1 write to Length
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\RunePosition.cs (1)
91Length = length;
7 references to Length
System.Private.CoreLib (7)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\RunePosition.cs (7)
105Rune == other.Rune && StartIndex == other.StartIndex && Length == other.Length && WasReplaced == other.WasReplaced; 123HashCode.Combine(Rune, StartIndex, Length, WasReplaced); 148length = Length; 228Current = new RunePosition(rune, Current.StartIndex + Current.Length, length, false); 233Current = new RunePosition(Rune.ReplacementChar, Current.StartIndex + Current.Length, 1, true); 302Current = new RunePosition(rune, Current.StartIndex + Current.Length, charsConsumed, wasReplaced);