본문 바로가기

C# Winform

C# Winform | string NewLine 줄바꿈

by C기억저장소 2020. 10. 28.

C# Winform | string NewLine 줄바꿈

 

  TEST CODE

 

Environment.NewLine

 

string str = "Line1" + Environment.NewLine + "Line2";
Console.WriteLine(str);
cs
 

 

  output

 

 

docs.microsoft.com/ko-kr/dotnet/api/system.environment?view=netcore-3.1

 

Environment 클래스 (System)

현재 환경 및 플랫폼에 대한 정보 및 조작 방법을 제공합니다.Provides information about, and means to manipulate, the current environment and platform. 이 클래스는 상속될 수 없습니다.This class cannot be inherited.

docs.microsoft.com