본문 바로가기

프로그래밍/C# 프로그래밍

C# 튜토리얼 사이트

using System;
namespace HelloWorldApplication
{
   class HelloWorld
   {
      static void Main(string[] args)
      {
         /* my first program in C# */
         Console.WriteLine("Hello World");
         Console.ReadKey();
      }
   }
}


기본 데이터타입부터 자료구조등 비교적 쉬운 예제로 이루어져 있다.

http://www.tutorialspoint.com/csharp/index.htm