string abc = "我是abced";
int a = abc.Length;
byte[] b = Encoding.ASCII.GetBytes(abc);
foreach (var item in b)
{
if (item == 83)
{

}
}