gserver-remake/GServer.Common/Extensions/StringExtensions.cs
Aaron Yarborough 6d80785dfd refactor
2024-09-11 21:38:32 +01:00

11 lines
230 B
C#

using System.Text;
namespace GServer.Common.Extensions;
public static class StringExtensions
{
public static byte[] GetAsciiBytes(this string value)
{
return Encoding.ASCII.GetBytes(value);
}
}