Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class DayCollection
{
string[] days = { "Sun", "Mon", "Tues", "Wed", "Thurs", "Fri", "Sat" };

// This method finds the day or returns -1
// This method finds the day or returns an Exception if the day is not found
private int GetDay(string testDay)
{

Expand Down Expand Up @@ -43,4 +43,4 @@ static void Main(string[] args)
System.Console.ReadKey();
}
}
// Output: 5
// Output: 5