mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-04 13:25:51 +00:00
Refactor Import structure
This commit is contained in:
17
PckStudio.Core/Extensions/StringExtensions.cs
Normal file
17
PckStudio.Core/Extensions/StringExtensions.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user