static void Main(string[] args)
{
Console.OutputEncoding = Encoding.UTF8;
OrderedDictionary od = new OrderedDictionary();
od.Add("IS401", "Hệ quản trị cơ sở dữ liệu");
od.Add("CR250", "Nền tảng hệ thống máy tính");
od.Add("CS414", "Lập Trình Winforms");
od.Add("CR424", "Lập trình Android");
od.Add("CS403", "Công nghệ phần mềm");
od.Add("CS420", "Hệ phân tán");
od.Add("SE445", "Tích hợp hệ thống");
od.Add("IS385", "Thương Mại Điện Tử");
Console.WriteLine("Xuất danh sách môn học");
foreach (string item in od.Keys)
{
Console.WriteLine(item);
}
Console.WriteLine("Nhập vị trí cần chèn");
int x = int.Parse(Console.ReadLine());
od.Insert(x, "CS201", "Tin Ứng Dụng");
Console.WriteLine("Xuất danh sách môn học sau khi chèn");
foreach (string item in od.Keys)
{
Console.WriteLine(item);
}
}