private static bool IsHanZi(string ch) 
{ 
     byte[] byte_len = System.Text.Encoding.Default.GetBytes(ch); 
     if (byte_len.Length == 2) { return true; }
     return false; 
}

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-08
  • 2022-12-23
  • 2021-08-18
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-15
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案