Recursively Printing The Numbers 1 - 10

 The goal for this exercise is to start writing recursive code.  You’ll start here, with a relatively simple task.

 

This class should be found in the Student_Answers.cs file.  This class will print out all (integer) the numbers from 1 through 10 (including both 1 and 10) recursively.   In order to do this recursively, you'll need to have the method pass a parameter to itself.

What you need to do for this exercise: 

  1. Implement the Print_Numbers_Recursively method to print the numbers 1 through 10, recursively
    1. Test this out on your own, using the Student_Answers.cs file.
  2. There are no NUnit tests for this exercise.