急用?
请大虾帮忙!

解决方案 »

  1.   

    直接用char()转啊,有什么问题吗?
      

  2.   

    楼上,69定义在一个byte里,如何转化成E
      

  3.   

    TO:69如何转成成e???try..            int i = 69;
                char c = (char)i;
                Console.WriteLine(c);有什么问题吗?
      

  4.   

    or try..            byte[] bt = new byte[] { 69, 70, 71 };
                char[] ch = Encoding.ASCII.GetChars(bt);
                foreach (char c in ch)
                {
                    Console.WriteLine(c);
                }