C#[작성중]

site

문자열 보간

문자열의 여는 따옴표 앞에 $를 추가하면 중괄호 사이 문자열 안에 aFriend 같은 변수를 포함할 수 있다

Console.WriteLine($"Hello {aFriend}");

goto를 사용할 수 있다.

최대 최솟값

int max = int.MaxValue;
int min = int.MinValue;
Console.WriteLine($"The range of integers is {min} to {max}");

decimal 형식 double보다 전체자릿수가 큼.

double a = 1.0;
double b = 3.0;
Console.WriteLine(a / b);

decimal c = 1.0M;
decimal d = 3.0M;
Console.WriteLine(c / d);
//output
0.333333333333333
0.3333333333333333333333333333

pi : Math.PI (double)

Posted 2021-01-13