Method | Description | |
---|---|---|
AsString ( this |
Converts a sequence of chars to a string. This should be called
|
|
Clear ( this sb ) : void |
Clears the specified StringBuilder. This is equivalent to calling
|
|
IsNullOrEmpty ( this s ) : bool |
Determines whether the string is null or empty. This is merely
|
|
Lines ( this |
Breaks the specified char sequence into a sequence of strings at newline characters. The resulting strings do not contain newlines.
|
|
ReverseIterator ( this s ) : IEnumerable |
Enumerates the specified string in the reverse order.
|
|
UnLines ( this |
An inverse to Lines. Joins lines, after appending a terminating newline to each.
|
|
UnLinesAsString ( this |
Equivalent to
|
|
UnLinesCS ( this |
An inverse to Lines. It joins lines, after appending a terminating newline to each.
|
|
UnWords ( this |
An inverse to Words. It joins words, separating them by a single space.
|
|
UnWordsAsString ( this |
Equivalent to
|
|
UnWordsCS ( this |
An inverse to Words. It joins words, separating them by a single space.
|
|
Words ( this |
Breaks the specified char sequence into a sequence of words delimited by whitespace. The resulting strings do not contain whitespace.
|
public static AsString ( this |
||
charSequence | this |
The char sequence. |
return | string |
public static IsNullOrEmpty ( this s ) : bool | ||
s | this | |
return | bool |
public static Lines ( this |
||
charSequence | this |
The char sequence. |
return | IEnumerable |
public static ReverseIterator ( this s ) : IEnumerable |
||
s | this | |
return | IEnumerable |
public static UnLines ( this |
||
lines | this |
A sequence of strings. |
return | IEnumerable |
public static UnLinesAsString ( this |
||
lines | this |
A sequence of strings. |
return | string |
public static UnLinesCS ( this |
||
lines | this |
A sequence of sequences of chars. |
return | IEnumerable |
public static UnWords ( this |
||
words | this |
A sequence of strings. |
return | IEnumerable |
public static UnWordsAsString ( this |
||
words | this |
A sequence of strings. |
return | string |
public static UnWordsCS ( this |
||
words | this |
A sequence of sequences of chars. |
return | IEnumerable |
public static Words ( this |
||
charSequence | this |
The char sequence. |
return | IEnumerable |