using System;using System.Collections.Generic;public class Program { public static void Main(string _args) { // Generic(일반화) - Template // 배열 // 크기를 알면 배열을. 모르면 아래와 같이 List list = new List(); // int형으로 일반화 list.Add(1); list.Add(2); //list.Add(3.14); //box, unboxing이 발생하지 않음. 빠름 Console.WriteLine(list[1]); // 스택 Stack stack ..