C# Class Mosa.Runtime.StringBuffer

ファイルを表示 Open project: tgiphil/MOSA-Project Class Usage Examples

Public Methods

Method Description
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

Private Methods

Method Description
Append ( uint value, bool signed, bool hex ) : void
IndexOfImpl ( string value, int startIndex, int count ) : int
firstChar ( ) : char*

Method Details

Append() public method

public Append ( StringBuffer value ) : void
value StringBuffer
return void

Append() public method

public Append ( StringBuffer value, int start ) : void
value StringBuffer
start int
return void

Append() public method

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

Append() public method

public Append ( char value ) : void
value char
return void

Append() public method

public Append ( int value ) : void
value int
return void

Append() public method

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

Append() public method

Appends a string
public Append ( string value ) : void
value string
return void

Append() public method

public Append ( string value, int start ) : void
value string
start int
return void

Append() public method

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

Append() public method

public Append ( uint value ) : void
value uint
return void

Append() public method

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

Clear() public method

public Clear ( ) : void
return void

IndexOf() public method

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

Set() public method

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

StringBuffer() public method

public StringBuffer ( byte value ) : System.Runtime.InteropServices
value byte
return System.Runtime.InteropServices

StringBuffer() public method

public StringBuffer ( int value ) : System.Runtime.InteropServices
value int
return System.Runtime.InteropServices

StringBuffer() public method

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

StringBuffer() public method

public StringBuffer ( string value ) : System.Runtime.InteropServices
value string
return System.Runtime.InteropServices

StringBuffer() public method

public StringBuffer ( uint value ) : System.Runtime.InteropServices
value uint
return System.Runtime.InteropServices

StringBuffer() public method

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

this() public method

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