2012年10月15日 星期一

c# convert string to character

string s = "hallo world";
foreach( char c in s)
{
Console.WriteLine(System.Convert.ToInt32(c));
}
Console.ReadLine();

沒有留言: