본문 바로가기

.NET

C# String 타입에서 출바꿈 출력하기 (아스키코드값 변환 엔터)

반응형
///////////////////////////// 잘됨 /////////////////////////////

string strMI = string.Format("휠마우스 설치 : {0} \r\n 마우스 머튼 개수 :{1} \r\n" +
    "버튼스왑 :{2} \r\n 마우스 속도 : {3} \r\n 휠 델타값 :{4} \r\n 휠 라인수 : {5} \r\n" +
"더블클릭 시간 : {6} \r\n 필셀단위 영역 : {7}",
SystemInformation.MouseWheelPresent, 
SystemInformation.MouseButtons,
SystemInformation.MouseButtonsSwapped,
SystemInformation.MouseSpeed,
SystemInformation.MouseWheelScrollDelta,
SystemInformation.MouseWheelScrollLines,
SystemInformation.DoubleClickTime,
SystemInformation.DoubleClickSize);
textMouseInfo.Text = strMI;


OR  string strMI = string.Format("휠마우스 설치 : {0} " + Environment.NewLine + " 마우스 머튼 개수 :{1} \r\n" +
"버튼스왑 :{2} \r\n 마우스 속도 : {3} \r\n 휠 델타값 :{4} \r\n 휠 라인수 : {5} \r\n" +
"더블클릭 시간 : {6} \r\n 필셀단위 영역 : {7}",


///////////////////////////// 안됨/////////////////////////////


//string strMI = string.Format("휠마우스 설치 : {0}\n 마우스 머튼 개수 :{1} \n" +
//    "버튼스왑 :{2} \n 마우스 속도 : {3} \n 휠 델타값 :{4} \n 휠 라인수 : {5} \n" +
//    "더블클릭 시간 : {6} \n 필셀단위 영역 : {7}",
//    SystemInformation.MouseWheelPresent,
//    SystemInformation.MouseButtons,
//    SystemInformation.MouseButtonsSwapped,
//    SystemInformation.MouseSpeed,
//    SystemInformation.MouseWheelScrollDelta,
//    SystemInformation.MouseWheelScrollLines,
//    SystemInformation.DoubleClickTime,
//    SystemInformation.DoubleClickSize);
//textMouseInfo.Text = strMI;