HtmlEscape(input, leaveSingleQuotesAlone, leaveDoubleQuotesAlone) Indent(str, by, indentFirstLine) ParseInt(str, default_, style, provider) Replace(str, oldValue, newValue, comparison)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Extension method: string SubstringRightSafe(this string, int)Declarationpublic static string SubstringRightSafe(
this string source,
int startIndex
) Summary
Same as StringExtensions.SubstringSafe(this string, int) but counting from the right instead of left. Equivalent to
source.Reverse().SubstringSafe(startIndex).Reverse() . |