6 references to Length
Microsoft.CodeAnalysis.Workspaces (6)
Shared\Extensions\SourceTextExtensions.cs (4)
306if (Position >= Length) 314if (Position >= Length) 344var totalCharsToRead = Math.Min(count, Length - Position); 369Contract.ThrowIfTrue(Position > Length);
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Utilities\TextReaderWithLength.cs (1)
16return string.Create(Length, this, static (chars, state) => state.Read(chars));
Workspace\Host\TextFactory\TextFactoryService.cs (1)
36? SourceText.From(textReaderWithLength, textReaderWithLength.Length, encoding, checksumAlgorithm)