2023-06-29 14:57:11 +08:00
|
|
|
|
using System.Text;
|
2023-06-05 19:57:17 +08:00
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|