标签:style blog color os io for cti ar
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TestConsole { class Program { static void Main(string[] args) { byte[] b = ASCIIEncoding.Default.GetBytes("阿"); foreach (var s in b) { Console.WriteLine(Convert.ToString(s,16)); } Console.ReadLine(); } } }
标签:style blog color os io for cti ar
原文地址:http://www.cnblogs.com/swtool/p/3888190.html