Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#에서 Read() 및 ReadLine() 메서드의 차이점은 무엇입니까?

<시간/>

읽기()

Read()는 표준 입력 스트림에서 다음 문자를 읽습니다. 콘솔에서 키를 누르면 닫힙니다.

int a = Console.Read()
Console.WriteLine(a);

ReadLine()

표준 입력 스트림에서 다음 문자 줄을 읽습니다.

예시

using System;
class Program {
   static void Main() {

      int x = 10;
      Console.WriteLine(x);
      Console.Write("\nPress any key to continue... ");
      Console.ReadLine();

   }
}

출력

10
Press any key to continue...