본문 바로가기
C#

[C#] 출력하기 - Console.WriteLine()

by Seong-Jun 2024. 4. 13.
728x90
반응형
SMALL

C#에서는 출력할 때 Console.WriteLine을 사용한다.

 

using System;
using static System.Console; // => WriteLine();
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace project1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            System.Console.WriteLine("Hello C#"); // 단축키 c + w + tab
            System.Console.WriteLine(275);
            Console.WriteLine(275);
            WriteLine(275);
            WriteLine(); // 줄바꿈

            System.Console.Write(275);
            Console.Write(275);
            Write(275);
            WriteLine();
            WriteLine();

            WriteLine("C#");
            WriteLine();
        }
    }
}

 

WriteLine과 Write의 차이점

WriteLine은 출력하고 줄바꿈을 하고 Write는 출력하고 줄바꿈을 하지 않는다.

 

주석

// 한줄 주석
/*
 * 여러줄 주석
 */

 

이스케이프

// 이스케이프
WriteLine("컴퓨터\t소프트웨어\t공학과"); // \t : 탭
WriteLine("컴퓨터\n소프트웨어\n공학과"); // \n : 줄바꿈
WriteLine();
728x90
반응형
LIST

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

[C#] 시험공부 정리 2주차  (0) 2024.04.13

댓글