AvalonStudio.TextEditor.Utils.RopeTextReader.Read C# (CSharp) Méthode

Read() public méthode

public Read ( ) : int
Résultat 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