Create two .cs files: "Course.cs" and "Program.cs"
Review Dictionary<TKey, TValue> Class.
https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.dictionary-2?view=netcore-3.1
1. Create a class Course in "Course.cs". (20 points)
- create a constructor with two string parameters "courseId" and "courseName".
- create two string data members "CID" with property "ID"(set, get), and
"CName" with property "Name"(set, get).
2. In "Program.cs", do followings: (20 points)
- Create 4 "Course" objects, set constructor with the following values
- "coursel" with cousre id "CTS1851", course name "Internet Web
Foundation"
- "course2" with cousre id "CGS2820", course name "Web Programming"
- "course3" with cousre id "CGS2821", course name "Advanced Web
Programming"
- "course4" with cousre id "COP2361", course name "C# Programming"
- Create a "Dictionary" object "courses" with "string"(course id) as key,
"Course" as value, string(key)/Course(value) pair. (20 points)
- call "Dictionary" method "Add() to add each course id and course to
"courses". (20 points)
- use "foreach" to go through "Dictionary", display each course id (key) and
course name (value.Name). (20 points)