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 SubstringRight(this string, int, int)Declarationpublic static string SubstringRight(
this string source,
int startIndex,
int length
)Summary
Same as string.Substring(int, int) but counting from the right instead of left. Equivalent to
source.Reverse().Substring(startIndex, length).Reverse(). |