11 lines
230 B
C#
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);
|
|
}
|
|
}
|