using System;
using System.Runtime.InteropServices;
namespace MyFirstProgram
{
internal class Program
{
static void Main(string[] args) // main method
{
// 기본적으로 string으로 입력됨
// int, double, boolean, char 등으로 사용하기 위해서는 타입캐스팅이 필요함
string example = Console.ReadLine();
Console.WriteLine(example);
}
}
}
728x90
'언어 > [C#]' 카테고리의 다른 글
[C#] Math 클래스 (Pow, Sqrt, Abs, Round, Ceiling, Floor, Max, Min) (0) | 2023.02.25 |
---|---|
[C#] 연산자 +, -, *, /, ++, +=, -- -=, *=, /= (0) | 2023.02.25 |
[C#] 함수 설명 method summary (0) | 2023.02.25 |
[C#] 타입캐스트 TypeCasting (Convert class) (0) | 2023.02.25 |
[C#] C# 주석 작성하기 (한 줄 주석, 여러 줄 주석) (0) | 2023.02.25 |