>>>怎样把一个用二进制表示的字符串,转换成用unicode码来表示?
look into System.Text.UnicodeEncoding class, it has many Get* methods>>>在C#中有没有测字长的函数?
if you have an array or string, try their Length property>>>有没有取出字符串中某个字的函数?
String s = "01234";
s[2]; // will give you the third char>>>怎么样求一个字的ASCII码?
char A = 'A';
int i = (int)A;