C# Class Lucene.Net.Support.StringBuilderExtensions

显示文件 Open project: apache/lucenenet

Public Methods

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

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
return System.Text.StringBuilder

Reverse() public static method

public static Reverse ( this text ) : StringBuilder
text this
return System.Text.StringBuilder