Method | Description | |
---|---|---|
clean_html ( this input ) : string | ||
format_with ( this input ) : string |
Formats string with the formatting passed in. This is a shortcut to string.Format().
|
|
split_safe ( this s, char separator, StringSplitOptions stringSplitOptions ) : string[] | ||
to_lower ( this input ) : string | ||
to_lower_invariant ( this input ) : string | ||
to_string ( this input ) : string |
Gets a string representation unless input is null.
|
public static clean_html ( this input ) : string | ||
input | this | |
return | string |
public static format_with ( this input ) : string | ||
input | this | The input. |
return | string |
public static split_safe ( this s, char separator, StringSplitOptions stringSplitOptions ) : string[] | ||
s | this | |
separator | char | |
stringSplitOptions | StringSplitOptions | |
return | string[] |
public static to_lower ( this input ) : string | ||
input | this | |
return | string |
public static to_lower_invariant ( this input ) : string | ||
input | this | |
return | string |
public static to_string ( this input ) : string | ||
input | this | The input. |
return | string |