编程之路

——火地晋

  :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

多转帖,不会被河蟹。

http://topic.csdn.net/t/20030320/10/1553600.html

来自于timmy3310的回帖。

C#里面的字符串常量都是Unicode


如果你需要Unicode字节:

string   test   =   "你好 ";

byte[]   testBytes   =   System.Text.Encoding.Unicode.GetBytes(   test   );

 怎么得到一个字符的ASCALL码?

 

char   c   =   'A '; int   asciiOfA   =   (int)c;     //asciiOfA   就是   'A '   的ASCII码

posted on 2010-10-20 19:15  火地晋  阅读(1634)  评论(0编辑  收藏  举报