public static int GetStrRealLen(string s)
  {
   byte[] sarr = System.Text.Encoding.Default.GetBytes(s);
   int len = sarr.Length;
   return len;
  }

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-06
  • 2022-12-23
  • 2022-12-23
  • 2021-12-19
  • 2022-12-23
  • 2021-08-01
  • 2021-08-14
相关资源
相似解决方案