c# 기초 hello world 콘솔에 뿌리기
2017. 11. 11. 22:55ㆍc#
반응형
모든 프로그램을 배울 때 hello world 를 콘솔창에 뿌리면서,
설치 및 설정이 잘 완료 되었는지 확인한다.
즉, 가장 기초적인 프로그램이다.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace hello_world
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("hello_world");
Console.ReadKey();
}
}
}
반응형