标签:
1、代码
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApplication3 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 string str = "知耻近乎勇"; 14 byte[] buffer = System.Text.Encoding.Default.GetBytes(str); 15 16 Console.WriteLine("OK"); 17 Console.ReadKey(); 18 } 19 } 20 }
2、效果
3、技巧
在转换的时候会发现,什么编码格式都有怎么就是没有ANSI呀,其实ANSI是默认编码格式
看图,
标签:
原文地址:http://www.cnblogs.com/jinlingzi/p/5946181.html