Create Linked List from Scratch in C# without using Builtin class

I have code Linked List from scratch without using built in List Class. Linked-List inserts and removes elements fast. The following code example demonstrates many features of the Linked List. let's see how we go about implementing a Simple Linked List in C#.

Code :

Output :