1 write to StartIndex
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\RunePosition.cs (1)
90StartIndex = startIndex;
8 references to StartIndex
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\RunePosition.cs (8)
105Rune == other.Rune && StartIndex == other.StartIndex && Length == other.Length && WasReplaced == other.WasReplaced; 123HashCode.Combine(Rune, StartIndex, Length, WasReplaced); 134startIndex = StartIndex; 147startIndex = StartIndex; 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);