AvalonStudio.TextEditor.Utils.RopeTextReader.Read C# (CSharp) Method

Read() public method

public Read ( ) : int
return int
		public override int Read()
		{
			if (currentNode == null)
				return -1;
			var result = currentNode.contents[indexInsideNode++];
			if (indexInsideNode >= currentNode.length)
				GoToNextNode();
			return result;
		}

Same methods

RopeTextReader::Read ( char buffer, int index, int count ) : int