Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: string SubstringRight(this string, int)

Declaration

public static string SubstringRight(
    this string source,
    int startIndex
)

Summary

Same as string.Substring(int) but counting from the right instead of left. Equivalent to source.Reverse().Substring(startIndex).Reverse().