AsgQuizzes.Exam.Exam C# (CSharp) Method

Exam() public method

public Exam ( string student, decimal score ) : System
student string
score decimal
return System
        public Exam(string student,decimal score)
        {
            this.Student = student;
            this.Score = score;
        }
Exam