AssessmentAnywhere.Excel.ResultRow.ResultRow C# (CSharp) 메소드

ResultRow() 공개 메소드

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