C# 클래스 GSF.IO.UltraStreamWriter

Represents an ultra high speed way to write data to a stream. StreamWriter's methods can be slow at times.
파일 보기 프로젝트 열기: GridProtectionAlliance/openHistorian 1 사용 예제들

공개 메소드들

메소드 설명
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