Removing From The Front Of The List

 The goal for this exercise is to add a Remove method to your simple Linked List class

 For this exercise, you need to implement the RemoveFromFront method in the provided MyIntList class, as well as any other methods that you need to implement in order to accomplish the goal of implementing this method.  This class should be found in the Student_Answers.cs file.  

 What you need to do for this exercise

  1.  Implement RemoveFromFront, as described above

  2. Once you’ve completed the above task, you should run the tests in the NUnit_Tests_LL_RemoveFromFront  class.  They should all pass at this point, and if not, then you should fix your program so that those tests do pass.  You can run the tests using the NUnit support in the provided starter project.  You should feel free to supplement that code with your own test cases if you wish, but you are neither required nor expected to.