C# Класс AvalonStudio.TextEditor.Utils.RopeTextReader

TextReader implementation that reads text from a rope.
Наследование: System.IO.TextReader
Показать файл Открыть проект

Открытые методы

Метод Описание
Peek ( ) : int
Read ( ) : int
Read ( char buffer, int index, int count ) : int
RopeTextReader ( Rope rope ) : System

Creates a new RopeTextReader. Internally, this method creates a Clone of the rope; so the text reader will always read through the old version of the rope if it is modified. Rope{T}.Clone()

Приватные методы

Метод Описание
GoToLeftMostLeaf ( ) : void
GoToNextNode ( ) : void

Описание методов

Peek() публичный Метод

public Peek ( ) : int
Результат int

Read() публичный Метод

public Read ( ) : int
Результат int

Read() публичный Метод

public Read ( char buffer, int index, int count ) : int
buffer char
index int
count int
Результат int

RopeTextReader() публичный Метод

Creates a new RopeTextReader. Internally, this method creates a Clone of the rope; so the text reader will always read through the old version of the rope if it is modified. Rope{T}.Clone()
public RopeTextReader ( Rope rope ) : System
rope Rope
Результат System