Horje
c# string right extension Code Example
c# string right extension
public static partial class Extensions
{
    /// <summary>
    ///     A string extension method that return the right part of the string.
    /// </summary>
    /// <param name="this">The @this to act on.</param>
    /// <param name="length">The length.</param>
    /// <returns>The right part.</returns>
    public static string Right(this string @this, int length)
    {
        return @this.Substring(@this.Length - length);
    }
}




Csharp

Related
wpf textblock line break code behind Code Example wpf textblock line break code behind Code Example
c# bitmap to array byte Code Example c# bitmap to array byte Code Example
unity conditional field Code Example unity conditional field Code Example
C# WPF Timer Code Example C# WPF Timer Code Example
c# how to check if a array bool is all true Code Example c# how to check if a array bool is all true Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12