C# Class Lucene.Net.Support.StringBuilderExtensions

Afficher le fichier Open project: apache/lucenenet

Méthodes publiques

Méthode Description
AppendCodePoint ( this text, int codePoint ) : StringBuilder

Appends the string representation of the codePoint argument to this sequence.

The argument is appended to the contents of this sequence. The length of this sequence increases by Character.CharCount(int).

The overall effect is exactly as if the argument were converted to a char array by the method Character.ToChars(int) and the character in that array were then appended to this StringBuilder.

Reverse ( this text ) : StringBuilder

Method Details

AppendCodePoint() public static méthode

Appends the string representation of the codePoint argument to this sequence.

The argument is appended to the contents of this sequence. The length of this sequence increases by Character.CharCount(int).

The overall effect is exactly as if the argument were converted to a char array by the method Character.ToChars(int) and the character in that array were then appended to this StringBuilder.

public static AppendCodePoint ( this text, int codePoint ) : StringBuilder
text this This .
codePoint int a Unicode code point
Résultat System.Text.StringBuilder

Reverse() public static méthode

public static Reverse ( this text ) : StringBuilder
text this
Résultat System.Text.StringBuilder