I got the program running guys thanks alot i just deleted everything and started again from scratch! Now I am having problems with :
// The constructor
public Grade ( string cname , int Studentident , int [] homework , int [] classwork , int [] midexam , int [] finalexam)
{
coursename = cname ;
Studentid = Studentident ;
hwgrade = homework ;
cwgrade = classwork ;
midegrade = midexam ;
finalegrade = finalexam ;
}
// trying to set the values
Grade grade = new Grade('m',1,1,1,1,1);
it is giving me an error cannot convert from int to int[]
homework,classwork,midexam, andfinalexam?