C# 문자열 보간(String Interpolation)C# 6.0부터 도입된 기능으로, 문자열 내부에 변수를 쉽게 삽입할 수 있는 방법이다.$ 기호를 문자열 앞에 붙이면, 중괄호 {} 안에 변수를 넣어 값을 직접 삽입할 수 있다.int score = 100;string playerName = "Alice";Debug.Log($"Player: {playerName}, Score: {score}"); 기존 방식과의 비교문자열 연결(Concatenation)Debug.Log("Player: " + playerName + ", Score: " + score);string.Format() 사용Debug.Log(string.Format("Player: {0}, Score: {1}", playerName, sc..