7 references to Length
Microsoft.CodeAnalysis.Workspaces (7)
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 (2)
18var chars = new char[Length]; 20var read = base.Read(chars, 0, Length);
Workspace\Host\TextFactory\TextFactoryService.cs (1)
36? SourceText.From(textReaderWithLength, textReaderWithLength.Length, encoding, checksumAlgorithm)