11 lines
209 B
C#
11 lines
209 B
C#
using System.Text;
|
|
|
|
namespace GServer.Common;
|
|
|
|
public static class StringExtensions
|
|
{
|
|
public static byte[] GetASCIIBytes(this string value)
|
|
{
|
|
return Encoding.ASCII.GetBytes(value);
|
|
}
|
|
}
|