Sha256: af67d8a77ba79854eec5d76926bfef407a4f2e6b2278d1f8499809025f2eff1e

Contents?: true

Size: 503 Bytes

Versions: 21

Compression:

Stored size: 503 Bytes

Contents

using System;
using System.Collections.Generic;

public class School
{
    public void Add(string student, int grade)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public IEnumerable<string> Roster(int grade)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public IEnumerable<string> Grade(int grade)
    {
        throw new NotImplementedException("You need to implement this function.");
    }
}

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
trackler-2.0.8.15 tracks/csharp/exercises/grade-school/GradeSchool.cs