Information Security ˗ˋˏ ♡ ˎˊ˗

Programming/C#

[C#기초프로그래밍] 정수 형식

토오쓰 2020. 8. 4. 12:06

환경설정

환경: Visual Studio 2017

프로젝트: C# 콘솔 앱(.NET Core)

 

 

Visual Studio Installer

 

 

 

기본 코드

using System;

namespace CSharp

{

    class Program

    {

        static void Main(string[] args)

        {

            Console.WriteLine("Hello World!");

        }

    }

}

 

 

실행 결과

 

참고

실행파일 위치에서 exe파일이 생성되지 않을때(DLL만 생성)

https://docs.microsoft.com/ko-kr/archive/blogs/benjaminperkins/net-core-application-where-is-my-exe-how-to-publish

 

.NET Core application, where is my EXE, how to publish

.NET Core application, where is my EXE, how to publish 03/07/2017 2 minutes to read In this article --> This article has been moved to its new home here:  https://benperk.github.io/msdn/2017/2017-03-net-core-application-where-is-my-exe-how-to-publish.htm

docs.microsoft.com

 

 

정수형식

자료형1

byte(1바이트 0~255), short(2바이트 -3만~3만), int(4바이트 -21억~21억), long(8바이트)

 

자료형2

sbyte(1바이트 -128~127), ushort(2바이트 0~6만), uint(4바이트 0~43억), ulong(8바이트)

 

코드

using System;

namespace CSharp

{

    class Program

    {

        static void Main(string[] args)

        {

            int hp;

            hp = 100;

            Console.WriteLine("Hello World! {0}", hp);

        }

    }

}

 

실행결과