Listclass1 List class using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; namespace _210603_008 { class Program { static void Main(string[] args) { // list 선언과 동시에 초기화 List list = new List() { 52, 273, 34, 64 }; Console.WriteLine("===================="); foreach (var item in list) { Console.WriteLine(item); } Console.W.. 2021. 6. 3. 이전 1 다음