📅  最后修改于: 2022-03-11 14:48:40.435000             🧑  作者: Mango
public static partial class Extensions
{
///
/// A string extension method that return the right part of the string.
///
/// The @this to act on.
/// The length.
/// The right part.
public static string Right(this string @this, int length)
{
return @this.Substring(@this.Length - length);
}
}