if (getOverview)
{
BackInTheDay(); // A (very) brief, incomplete history
GettingStarted(); // How to begin writing programs in C#/.NET
}
else if (simplePrograms)
{
switch (lessonIndex)
{
case 0:
Lesson0(); // Hello World
case 1:
Lesson1(); // Basics and Logic
case 2:
Lesson2(); // Methods and Arguments
case 3:
Lesson3(); // Creating a Chat Bot!
}
}
else if (nextSteps)
{
switch (lessonIndex)
{
{
case 4:
Lesson4(); // Splitting code into multiple Classes
case 5:
Lesson5(); // Go Fish Card Game – Part I
case 6:
Lesson6(); // Go Fish – Part II
}
}