Arrays of Objects : Array object : Data Structure C# Examples


C# Examples » Data Structure » Array object »

 

Arrays of Objects









    
using  System;

class  Employee
{
        public  Employee(string  name,  float  billingRate)
        {
                this.name  =  name;
                this.billingRate  =  billingRate;
        }
        
        public  float  CalculateCharge(float  hours)
        {
                return(hours  *  billingRate);
        }
        
        public  string  TypeName()
        {
                return("Employee");
        }
        
        private  string  name;
        protected  float  billingRate;
}
class  Manager:  Employee
{
        public  Manager(string  name,  float  billingRate)  :
        base(name,  billingRate)
        {
        }
        
        public  new  float  CalculateCharge(float  hours)
        {
                if  (hours  <  1.0F)
                hours  =  1.0F;                //  minimum  charge.
                return(hours  *  billingRate);
        }
        
        public  new  string  TypeName()
        {
                return("Civil  Employee");
        }
}
class  MainClass
{
        public  static  void  Main()
        {
                //  create  an  array  of  Employees
                Employee[]        earray  =  new  Employee[2];
                earray[0]  =  new  Employee("A",  15.50F);
                earray[1]  =  new  Manager("B",  40F);
                
                Console.WriteLine("{0}  charge  =  {1}",
                earray[0].TypeName(),
                earray[0].CalculateCharge(2F));
                Console.WriteLine("{0}  charge  =  {1}",
                earray[1].TypeName(),
                earray[1].CalculateCharge(0.75F));
        }
}
    
   
  
   



Output

Employee charge = 31
Employee charge = 30


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Structure
» Array object