Section 12.1: C# 6.0 부터 추가된 기능 (String Interpolation)

Version ≥ 6.0

C# 6.0 부터는 String.Format 을 대신하여 문자열 보간 (string interpolation) 기능을 사용할 수 있다.

string name = "John"; string lastname = "Doe"; Console.WriteLine($"Hello {name} {lastname}!");
Hello John Doe!

더욱 많은 예제는 이 페이지 에서 찾아볼 수 있다.

본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.

[출처] https://books.goalkicker.com/CSharpBook/

반응형

+ Recent posts