C#

protected int GetLength(string strValue)
    {
        byte[] myByte = System.Text.Encoding.Default.GetBytes(strValue);
        return myByte.Length;
    }

相关文章:

  • 2022-12-23
  • 2021-07-20
  • 2022-12-23
  • 2022-12-23
  • 2021-10-04
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-05
  • 2022-12-23
  • 2021-06-11
  • 2021-12-17
相关资源
相似解决方案