728x90

다운로드 바로가기 : visualstudio.microsoft.com/ko/thank-you-downloading-visual-studio/?sku=Community&rel=16

 

Visual Studio를 다운로드해 주셔서 감사합니다. - Visual Studio

 

visualstudio.microsoft.com

비쥬얼 스튜디오 는 커뮤니티 버전을 사용하면 공부시에 무료로 사용할 수 있습니다

주로 윈도우에서 C/C++, C# 을 개발할 경우 사용하며 맥에서 다운시 C#을 개발할 경우 사용합니다.

 

비쥬얼스튜디오는 IDE 라고 불리며 IDE 는 개발시에 사용자에게 편리한 도움을 주며 컴파일등의 주요기능을 도와주는 역할을 합니다.

 

 

728x90

'C#' 카테고리의 다른 글

C# Hello World  (0) 2021.03.13
C# IDE  (0) 2021.01.19
728x90
using System;

{
  class HelloWorld
  {
    static void Main(string[] args)
    {
      Console.WriteLine("Hello World!");    
    }
  }
}

C# 에서의 HelloWorld 출력 코드입니다.

 

 

여기서 Console.WriteLine(); 의 부분을 제외하고는 이후에 차차 알아보도록 하겠습니다

 

우선 using System 부분입니다.

 

네임스페이스 라고도 하며 Console.WriteLine(); 를 편하게 도와주는 역할을 합니다

 

사실 System.Console.WriteLine() 를 사용하지만 using System  을통하여 글을 줄이며 편리하게 사용하게 해주는 역할입니다.

 

 

728x90

'C#' 카테고리의 다른 글

Visual Studio  (0) 2021.03.14
C# IDE  (0) 2021.01.19
728x90

비주얼 스튜디오 : https://visualstudio.microsoft.com/ko/

비주얼 스튜디오 코드 :  https://code.visualstudio.com/

 

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

 

 

C# 의경우 비주얼스튜디오와 비주얼스튜디오 코드 2가지를 많이사용합니다.

그외의 IDE를 사용하셔도 무관합니다

728x90

'C#' 카테고리의 다른 글

Visual Studio  (0) 2021.03.14
C# Hello World  (0) 2021.03.13

+ Recent posts