LinkedList<T>.First property is used to get the first node of the LinkedList<T>.
Syntax:
public System.Collections.Generic.LinkedListNode First { get; }
Return Value: The first LinkedListNode<T> of the LinkedList<T>.
Below given are some examples to understand the implementation in a better way:
Example 1:
using System;
using System.Collections;
using System.Collections.Generic;
class GFG {
public static void Main()
{
LinkedList<String> myList = new LinkedList<String>();
myList.AddLast( "Geeks" );
myList.AddLast( "for" );
myList.AddLast( "Data Structures" );
myList.AddLast( "Noida" );
if (myList.Count > 0)
Console.WriteLine(myList.First.Value);
else
Console.WriteLine( "LinkedList is empty" );
}
}
|
Output:
Geeks
Example 2:
using System;
using System.Collections;
using System.Collections.Generic;
class GFG {
public static void Main()
{
LinkedList< int > myList = new LinkedList< int >();
if (myList.Count > 0)
Console.WriteLine(myList.First.Value);
else
Console.WriteLine( "LinkedList is empty" );
}
}
|
Output:
LinkedList is empty
Note:
- LinkedList accepts null as a valid Value for reference types and allows duplicate values.
- If the LinkedList is empty, the First and Last properties contain null.
- Retrieving the value of this property is an O(1) operation.
Reference: