목표 :
1. Hello World 를 출력하는 Console을 만들어 봅니다.
소스 코드 : Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _01_HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World");
}
}
}
결과
'Programing C# > C# Basic grammar' 카테고리의 다른 글
06 다차원 배열 (0) | 2019.05.11 |
---|---|
05 배열 (0) | 2018.11.06 |
04 문자와 문자열 (0) | 2018.02.24 |
03 기본변수들 출력 (0) | 2018.02.19 |
02 기본 변수 출력 (0) | 2018.02.18 |