C# 기본 예제 코드
1. VisualStudio Community 2017 실행
2. 파일 > 새로 만들기 > 프로젝트 > Visual C# > 콘솔 앱
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HelloWorld
{
class HelloWorld
{
static void Main(string[] args)
{
Console.WriteLine ("Hello, World!");
}
}
}
Hello, World! 출력
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HelloWorld
{
class HelloWorld
{
static void Main(string[] args)
{
Console.WriteLine ("Hello, {0}!", args[0]);
}
}
}
'프로그래밍 > C#' 카테고리의 다른 글
Visual Studio Community 2017 다운로드 (0) | 2018.04.14 |
---|---|
Microsoft Visualstudio community 2015 다운로드 (1) | 2017.01.15 |