2 implementations of Get
Microsoft.AspNetCore.App.Analyzers (2)
Infrastructure\VirtualChars\AbstractVirtualCharService.ITextInfo.cs (2)
22public char Get(SourceText text, int index) => text[index]; 28public char Get(string text, int index) => text[index];
2 references to Get
Microsoft.AspNetCore.App.Analyzers (2)
Infrastructure\VirtualChars\AbstractVirtualCharService.cs (2)
200var ch = info.Get(tokenText, index); 209Rune.TryCreate(ch, info.Get(tokenText, index + 1), out rune))