Net.Like.Xue.Tokyo/Assets/BITKit/Core/Utility/StringHelper.cs

17 lines
333 B
C#
Raw Normal View History

2024-11-03 16:42:23 +08:00
using System.Text;
namespace BITKit
{
public class StringHelper
{
public static byte[] GetBytes(string str )
{
return Encoding.UTF8.GetBytes( str );
}
public static string GetString(byte[] buffer)
{
return Encoding.UTF8.GetString(buffer);
}
}
}