LinkedList의 첫 번째 노드를 가져오기 위한 코드는 다음과 같습니다. -
예시
using System; using System.Collections.Generic; public class Demo { public static void Main(){ LinkedList<String> list = new LinkedList<String>(); list.AddLast("A"); list.AddLast("B"); list.AddLast("C"); list.AddLast("D"); list.AddLast("E"); list.AddLast("F"); list.AddLast("G"); list.AddLast("H"); list.AddLast("I"); list.AddLast("J"); Console.WriteLine("Count of nodes = " + list.Count); Console.WriteLine("First Node = "+list.First.Value); list.Clear(); Console.WriteLine("Count of nodes (updated) = " + list.Count); } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Count of nodes = 10 First Node = A Count of nodes (updated) = 0
예시
다른 예를 살펴보겠습니다 -
using System; using System.Collections.Generic; public class Demo { public static void Main(){ LinkedList<int> list = new LinkedList<int>(); list.AddLast(100); list.AddLast(200); list.AddLast(300); list.AddLast(400); list.AddLast(500); list.AddLast(600); list.AddLast(700); list.AddLast(800); list.AddLast(900); list.AddLast(1000); Console.WriteLine("Count of nodes = " + list.Count); Console.WriteLine("First Node = "+list.First.Value); Console.WriteLine("Last Node = "+list.Last.Value); list.Clear(); Console.WriteLine("Count of nodes (updated) = " + list.Count); } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Count of nodes = 10 First Node = 100 Last Node = 1000 Count of nodes (updated) = 0