C# Class Mosa.Runtime.StringBuffer

Afficher le fichier Open project: tgiphil/MOSA-Project Class Usage Examples

Méthodes publiques

Méthode 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

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

Method Details

Append() public méthode

public Append ( StringBuffer value ) : void
value StringBuffer
Résultat void

Append() public méthode

public Append ( StringBuffer value, int start ) : void
value StringBuffer
start int
Résultat void

Append() public méthode

public Append ( StringBuffer value, int start, int length ) : void
value StringBuffer
start int
length int
Résultat void

Append() public méthode

public Append ( char value ) : void
value char
Résultat void

Append() public méthode

public Append ( int value ) : void
value int
Résultat void

Append() public méthode

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

Append() public méthode

Appends a string
public Append ( string value ) : void
value string
Résultat void

Append() public méthode

public Append ( string value, int start ) : void
value string
start int
Résultat void

Append() public méthode

public Append ( string value, int start, int length ) : void
value string
start int
length int
Résultat void

Append() public méthode

public Append ( uint value ) : void
value uint
Résultat void

Append() public méthode

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

Clear() public méthode

public Clear ( ) : void
Résultat void

IndexOf() public méthode

Gets the index of a specific value
public IndexOf ( string value ) : int
value string
Résultat int

Set() public méthode

Overwrite the current value with a new one
public Set ( string value ) : void
value string
Résultat void

StringBuffer() public méthode

public StringBuffer ( byte value ) : System.Runtime.InteropServices
value byte
Résultat System.Runtime.InteropServices

StringBuffer() public méthode

public StringBuffer ( int value ) : System.Runtime.InteropServices
value int
Résultat System.Runtime.InteropServices

StringBuffer() public méthode

public StringBuffer ( int value, string format ) : System.Runtime.InteropServices
value int
format string
Résultat System.Runtime.InteropServices

StringBuffer() public méthode

public StringBuffer ( string value ) : System.Runtime.InteropServices
value string
Résultat System.Runtime.InteropServices

StringBuffer() public méthode

public StringBuffer ( uint value ) : System.Runtime.InteropServices
value uint
Résultat System.Runtime.InteropServices

StringBuffer() public méthode

public StringBuffer ( uint value, string format ) : System.Runtime.InteropServices
value uint
format string
Résultat System.Runtime.InteropServices

this() public méthode

Access a char at a specific index
public this ( int index ) : char
index int
Résultat char