C# 클래스 Newtonsoft.Json.Utilities.StringBuffer

Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
파일 보기 프로젝트 열기: JamesNK/Newtonsoft.Json 1 사용 예제들

공개 메소드들

메소드 설명
Append ( IArrayPool bufferPool, char value ) : void
Append ( IArrayPool bufferPool, char buffer, int startIndex, int count ) : void
Clear ( IArrayPool bufferPool ) : void
StringBuffer ( IArrayPool bufferPool, int initalSize ) : System
ToString ( ) : string
ToString ( int start, int length ) : string

비공개 메소드들

메소드 설명
EnsureSize ( IArrayPool bufferPool, int appendLength ) : void
StringBuffer ( char buffer ) : System

메소드 상세

Append() 공개 메소드

public Append ( IArrayPool bufferPool, char value ) : void
bufferPool IArrayPool
value char
리턴 void

Append() 공개 메소드

public Append ( IArrayPool bufferPool, char buffer, int startIndex, int count ) : void
bufferPool IArrayPool
buffer char
startIndex int
count int
리턴 void

Clear() 공개 메소드

public Clear ( IArrayPool bufferPool ) : void
bufferPool IArrayPool
리턴 void

StringBuffer() 공개 메소드

public StringBuffer ( IArrayPool bufferPool, int initalSize ) : System
bufferPool IArrayPool
initalSize int
리턴 System

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

ToString() 공개 메소드

public ToString ( int start, int length ) : string
start int
length int
리턴 string