forked from Dev275x/student-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Constants.cs
28 lines (20 loc) · 913 Bytes
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace dev275x.studentlist
{
static class Constants
{
/// Name of file containing list of students.
internal const string StudentList = "students.txt";
/// Command line argument to show all students.
internal const string ShowAll = "-a";
/// Command line argument to show a random student from the list.
internal const string ShowRandom = "-r";
/// Command line argument to display a count of the number of students in the list.
internal const string ShowCount = "-c";
/// Command line argument to find a student in the list.
internal const string FindEntry = "?";
/// Command line argument to add an entry to the list.
internal const string AddEntry = "+";
/// The delimiter that separates entries in the student list.
internal const char StudentEntryDelimiter = ',';
}
}