Hello, World!
프로젝트생성 방법 1. Main 문에 내용을 입력하고 Ctrl + F5을 눌러 실행한 후 결과창을 확인합니다. ex) static void Main(string[] args) { Console.Write("1. Hello, World!"); Console.WriteLine("2. Hello, World!"); } Console.Write(" ");의 () 사이의 있는 문자열을 출력하게 됩니다. Write로 작성할 경우 출력한 후 줄바꿈을 하지 않고 WriteLine으로 작성할 경우 출력한 후 한 줄 내려서 작성하는 것을 확인 할 수 있습니다. WriteLine은 C언어에서 printf("Hello, World!\n")로 사용합니다.
2016.12.11