Please code the following using C Show an example of the cod
     Please code the following using C#. Show an example of the code running successfully in a C# IDE Create a class called Volunteer that inherits from the Employee class in Figure below. Note that Employee is an abstract class. Just like in java, an abstract class is a template that can NOT be used to create objects. Why? Because it has an abstract method Earnings () which has not been implemented. Derived classes which extend this class MUST provide the Earning () calculation in the derived class. So you must implement the Earning method in your Volunteer class. In your Volunteer class, Earnings() should calculate a tax-break that the volunteer earns. The tax break is calculated as $0.75 per 3 hours volunteered. Your class should contain a constructor that inherits from the Employee class and initializes the instance variables. The Volunteer class should add an instance variable for the name of the company name where the volunteer service occurred and also a variable for hours volunteered. Create properties for them also. Create a second class that prompts the user for the information for two Volunteers,creates the2 Volunteer objects, then displays each Volunteer.  
  
  Solution
class volunteer extends employee
{
public void decimal Earning(int hours)
{
System.console(hours*0.75);
}
}
class demo
{
public static void main(String args[])
{
System.out.println(\"enter the hours\");
int h=console.read();//change like c#
voluntee v=new voluntee();
v.Earning(h);
}
}

