Program.cs
main
using System;
Console.WriteLine()
Declaring a variable means to introduce a new variable to the program. You define its type and its name. Instantiate - Instantiating a class means to create a new instance of the class.
List<KeyValuePair<string, int>> list;
list = new List<KeyValuePair<string, int>>();
list
insertData