Console.Read()方法用於從標準輸入流中讀取下一個字元。當使用者鍵入一些輸入字元時,此方法基本上會阻止其返回。一旦使用者按ENTER鍵,它就會終止。
語法:
public static int Read();
傳回值:傳回輸入流中的下一個字符,如果目前沒有要讀取的字符,則傳回負數(- 1)。
例外:如果發生I / O錯誤,此方法將給予IOException。
以下程式說明了上述方法的使用:
#範例1:
// C# program to illustrate the use // of Console.Read Method using System; namespace GFG { class Program { static void Main(string[] args) { int x; Console.WriteLine("Enter your Character to get Decimal number"); // using the method x = Console.Read(); Console.WriteLine(x); } } }
輸出:
#範例2:
// C# program to illustrate the use // of Console.Read Method using System; namespace GFG { class Program { static void Main(string[] args) { // Write to console window. int x; Console.WriteLine("Enter your Character to get Decimal number"); x = Console.Read(); Console.WriteLine(x); // Converting the decimal into character. Console.WriteLine(Convert.ToChar(x)); } } }
輸出:
C教學》
這篇文章是關於C#中的Console.Read()方法詳解,希望對需要的朋友有幫助!以上是C#中的Console.Read()方法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!