/// <summary>
/// 计算字符串长度
/// </summary>
public static int GetByteLength(string text)
{
return System.Text.Encoding.Default.GetBytes(text).Length;
}
/// <summary>
/// 计算字符串长度
/// </summary>
public static int GetByteLength(string text)
{
return System.Text.Encoding.Default.GetBytes(text).Length;
}
转载于:https://www.cnblogs.com/hc10/p/3371163.html