[C#] 매개변수 배열 (params)
class Program { static void Main(string[] args) { Combine("one"); Combine("one", "two"); Combine("one", "two", "three"); Combine("one", "two", "three", "four"); Combine("one", "two", "three", "four", "five"); Combine("one", "two", "three", "four", "five", "six"); } static void Combine(string arg1, params string[] args) { System.Text.StringBuilder sb = new System.Text.StringBuilder(); sb.Append($..