c# console.read

wisdomone1發表於2012-03-28

 Console.WriteLine("Input:");
          int a = Console.Read();
          Console.WriteLine("Out:{0}", a);
          Console.WriteLine("---------------");
          Console.ReadKey();

 

 

console.read就從輸入流捕獲下一個字元

它是返回捕獲字元對應的ascii字元,故按a鍵返回的是49

 

故要捕獲按鈕的數字鍵,就是

int i=convert.toint32(console.readline());

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-719774/,如需轉載,請註明出處,否則將追究法律責任。