using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;


namespace ConsoleApplication1

{

    class Program

    {

        static void Main(string[] args)

        {

            object a = 12345678910;

            object b = 12345.67891011;

            object c = true;

            object d = "안녕하세요";

            

            Console.WriteLine("a={0}, b={1}, c={2}, d={3}", a, b, c, d);

        }

    }

}



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

params  (0) 2017.08.06
foreach  (0) 2017.08.06
c# 동적으로 textbox 생성하기  (0) 2017.08.05
winform 파일 쓰기  (0) 2017.08.05
openFileDialog를 이용하여 파일읽기  (0) 2017.08.05

+ Recent posts