문자열 보간 기능 -> 링크 문자열 보간 기능 '$'을 이용하여 생성된 문자열은 1)단순 문자열일 수도 있지만, 2)FormattableString을 상속할 타입일 수도 있다.1)문자열 : 문자열 자체string first = $"It's the {DateTime.Now.Day} of the {DateTime.Now.Month} month";2) FormattableString : format문자열과 format에 구성될 argument로 구성(MS)FormattableString second = $"It's the {DateTime.Now.Day} of the {DateTime.Now.Month} month";*FormattableString 객체라면 컴퓨터에 지정된 문화권을 고려하여 문자열을 생성할 ..