AssessmentAnywhere.Excel.ResultRow.ResultRow C# (CSharp) Method

ResultRow() public method

public ResultRow ( string surname, string forenames, decimal result )
surname string
forenames string
result decimal
        public ResultRow(string surname, string forenames, decimal? result)
        {
            this.surname = surname;
            this.forenames = forenames;
            this.result = result;
        }
ResultRow