node 썸네일형 리스트형 [c#] 간단한 Generic List public class GenericList { private class Node { private Node next; private T data; public Node(T t) { next = null; data = t; } public Node Next { get { return next; } set { next = value; } } public T Data { get { return data; } set { data = value; } } } private Node head; public GenericList() { head = null; } public void Add(T t) { Node n = new Node(t); n.Next = head; head = n; } public IEnumera.. 더보기 이전 1 다음