List<string> Inventory = new List<string>();


Inventory.Add ("단검");

Inventory.Add ("사과");


Console.WriteLine(Inventory);




이렇게 하면


System.Collections.Generic.List`1[System.String]


이런 결과가 출력이 되는데

List에 있는 string 값을


"단검, 사과"


이런 식으로 출력하려면 어떻게 해야 해요?