mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 11:56:28 +00:00
18 lines
351 B
C#
18 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PckStudio.Core.Extensions
|
|
{
|
|
internal static class StringExtensions
|
|
{
|
|
|
|
public static string End(this string str, int count)
|
|
{
|
|
return str.Substring(str.Length - count);
|
|
}
|
|
}
|
|
}
|