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