using System; namespace HelloWorldApplication { class HelloWorld { static void Main(string[] args) { /* my first program in C# */ Console.WriteLine("Hello World"); Console.ReadKey(); } } }
기본 데이터타입부터 자료구조등 비교적 쉬운 예제로 이루어져 있다.
'프로그래밍 > C# 프로그래밍' 카테고리의 다른 글
Int32.Parse(), Convert.ToInt32(), Int32.TryParse() 차이 (0) | 2015.10.05 |
---|---|
제너릭 클래스의 조건지정 - Where (1) | 2015.10.02 |
파일 읽기 예제 (0) | 2015.09.30 |
클래스와 구조체의 차이(2) - c# (0) | 2015.09.30 |
클래스와 구조체의 차이 - c# (0) | 2015.09.30 |