Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

충분히 쌓여가는

7. Console.WriteLine 메소드 본문

초보자를 위한 C# 200제/C# 입문

7. Console.WriteLine 메소드

빌드이너프 2024. 9. 2. 20:57

Overload

Console.Write()와 Console.WriteLine() 메소드는 하나의 변수나 값을 출력할 때는 어떤 자료형이라도 출력가능.

이유로 해당 메소드가 여러 가지 자료형에 대해 overload되어 있기 때문.

 

코드

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace A007_ConsoleWriteLine
{
    class Program
    {
        static void Main(string[] args)
        {
            bool b = true;
            char c = 'A';
            decimal d = 1.234m;
            double e = 1.23456789;
            float f = 1.23456789f;
            int i = 1234;
            string s = "Hello";

            Console.WriteLine(b);
            Console.WriteLine(c);
            Console.WriteLine(d);
            Console.WriteLine(e);
            Console.WriteLine(f);
            Console.WriteLine(i);
            Console.WriteLine(s);
        }
    }
}

 

코드 실행