상세 컨텐츠

본문 제목

String.Format 메서드

카테고리 없음

by 코딩초보 신성민 2020. 6. 18. 18:28

본문

개체, 변수 또는 식의 값을 다른 문자열에 삽입 해야 하는 경우 String.Format를 사용 합니다.

예를 들어 문자열에 Decimal값을 삽입 하여 사용자에게 단일 문자열로 표시 할 수 있다.

 

Decimal pricePerOunce = 17.35m;

String s = String.Format("The current price is {0} per ounce ."),pricePerOunce);

Console.WriteLine(s);

.// Result : The current price is 17.36 per ounce.

 

 

String.Format("12313"); 

String.Format("3131");

= 123133131 이렇게 !

음 그니까 문자열 합치는거다 .. 대충 ~