public void Run()
        {
            Console.WriteLine("Linked Lists");

            _first.Value = 5;

            _second.Value = 7; _first.Next = _second;

            _third.Value = 9; _second.Next = _third;

            Node.PrintList(_first);
        }