C# 클래스 Mosa.Runtime.StringBuffer

파일 보기 프로젝트 열기: tgiphil/MOSA-Project 1 사용 예제들

공개 메소드들

메소드 설명
Append ( StringBuffer value ) : void
Append ( StringBuffer value, int start ) : void
Append ( StringBuffer value, int start, int length ) : void
Append ( char value ) : void
Append ( int value ) : void
Append ( int value, string format ) : void

Appends a number to the string. Use format to output as Hex.

Append ( string value ) : void

Appends a string

Append ( string value, int start ) : void
Append ( string value, int start, int length ) : void
Append ( uint value ) : void
Append ( uint value, string format ) : void

Appends a number to the string. Use format to output as Hex.

Clear ( ) : void
IndexOf ( string value ) : int

Gets the index of a specific value

Set ( string value ) : void

Overwrite the current value with a new one

StringBuffer ( byte value ) : System.Runtime.InteropServices
StringBuffer ( int value ) : System.Runtime.InteropServices
StringBuffer ( int value, string format ) : System.Runtime.InteropServices
StringBuffer ( string value ) : System.Runtime.InteropServices
StringBuffer ( uint value ) : System.Runtime.InteropServices
StringBuffer ( uint value, string format ) : System.Runtime.InteropServices
this ( int index ) : char

Access a char at a specific index

비공개 메소드들

메소드 설명
Append ( uint value, bool signed, bool hex ) : void
IndexOfImpl ( string value, int startIndex, int count ) : int
firstChar ( ) : char*

메소드 상세

Append() 공개 메소드

public Append ( StringBuffer value ) : void
value StringBuffer
리턴 void

Append() 공개 메소드

public Append ( StringBuffer value, int start ) : void
value StringBuffer
start int
리턴 void

Append() 공개 메소드

public Append ( StringBuffer value, int start, int length ) : void
value StringBuffer
start int
length int
리턴 void

Append() 공개 메소드

public Append ( char value ) : void
value char
리턴 void

Append() 공개 메소드

public Append ( int value ) : void
value int
리턴 void

Append() 공개 메소드

Appends a number to the string. Use format to output as Hex.
public Append ( int value, string format ) : void
value int
format string
리턴 void

Append() 공개 메소드

Appends a string
public Append ( string value ) : void
value string
리턴 void

Append() 공개 메소드

public Append ( string value, int start ) : void
value string
start int
리턴 void

Append() 공개 메소드

public Append ( string value, int start, int length ) : void
value string
start int
length int
리턴 void

Append() 공개 메소드

public Append ( uint value ) : void
value uint
리턴 void

Append() 공개 메소드

Appends a number to the string. Use format to output as Hex.
public Append ( uint value, string format ) : void
value uint
format string
리턴 void

Clear() 공개 메소드

public Clear ( ) : void
리턴 void

IndexOf() 공개 메소드

Gets the index of a specific value
public IndexOf ( string value ) : int
value string
리턴 int

Set() 공개 메소드

Overwrite the current value with a new one
public Set ( string value ) : void
value string
리턴 void

StringBuffer() 공개 메소드

public StringBuffer ( byte value ) : System.Runtime.InteropServices
value byte
리턴 System.Runtime.InteropServices

StringBuffer() 공개 메소드

public StringBuffer ( int value ) : System.Runtime.InteropServices
value int
리턴 System.Runtime.InteropServices

StringBuffer() 공개 메소드

public StringBuffer ( int value, string format ) : System.Runtime.InteropServices
value int
format string
리턴 System.Runtime.InteropServices

StringBuffer() 공개 메소드

public StringBuffer ( string value ) : System.Runtime.InteropServices
value string
리턴 System.Runtime.InteropServices

StringBuffer() 공개 메소드

public StringBuffer ( uint value ) : System.Runtime.InteropServices
value uint
리턴 System.Runtime.InteropServices

StringBuffer() 공개 메소드

public StringBuffer ( uint value, string format ) : System.Runtime.InteropServices
value uint
format string
리턴 System.Runtime.InteropServices

this() 공개 메소드

Access a char at a specific index
public this ( int index ) : char
index int
리턴 char