Environment.NewLine
docs.microsoft.com/ko-kr/dotnet/api/system.environment.newline?view=net-5.0
해당 환경에 맞는 줄바꿈을 가져오는 메서드 흔히 콘솔을 쓸때는 \n\r을 쓰지만 위 명령어를 써도된다.
추후에 여러가지 환경에서 개발할경우 상황에 따라서 명령어가 달라질수 있으니 참고하면 좋을거같다.
static void Main(string[] args)
{
Console.WriteLine("Line1\n\rLine2" + Environment.NewLine + "Line3\nLine4");
}
'C# > Basic' 카테고리의 다른 글
구조체 (struct) (0) | 2021.02.06 |
---|---|
정적 생성자 (static constructor) (0) | 2021.02.02 |
for, foreach (0) | 2020.05.10 |
Ternary operator (삼항연산자) (0) | 2020.05.10 |
Enum (0) | 2020.05.01 |
댓글
이 글 공유하기
다른 글
-
구조체 (struct)
구조체 (struct)
2021.02.06 -
정적 생성자 (static constructor)
정적 생성자 (static constructor)
2021.02.02 -
for, foreach
for, foreach
2020.05.10 -
Ternary operator (삼항연산자)
Ternary operator (삼항연산자)
2020.05.10