C# 강의 - 1. Hello World 출력하기
안녕하세요. 이솔찬입니다.이번에는 C#으로 Hello World를 출력해보겠습니다. C#에서는 기본으로 콘솔 화면에 메시지를 출력하는 코드는 다음과 같습니다. 1Console.WriteLine("Hello World!");cs 먼저 Visual Studio에서 새 프로젝트 추가하고아래 사진과 같이 설정합니다. 프로젝트가 만들어지면 다음 코드가 있습니다. 123456789101112131415using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace Hello_World{ class Program { static void Main(string[] a..