C# Класс GSF.IO.UltraStreamWriter

Represents an ultra high speed way to write data to a stream. StreamWriter's methods can be slow at times.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
UltraStreamWriter ( StreamWriter stream ) : System

Creates a UltraStreamWriter around Stream

Write ( char value ) : void

Writes the provided character to the stream

Write ( float value ) : void

Writes the provided float to the stream

WriteLine ( ) : void

Writes a NewLine to the stream

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

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

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

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

Creates a UltraStreamWriter around Stream
public UltraStreamWriter ( StreamWriter stream ) : System
stream System.IO.StreamWriter The stream to wrap
Результат System

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

Writes the provided character to the stream
public Write ( char value ) : void
value char the character to write.
Результат void

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

Writes the provided float to the stream
public Write ( float value ) : void
value float the value to write.
Результат void

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

Writes a NewLine to the stream
public WriteLine ( ) : void
Результат void