using System.Collections.Generic;
public static void Main()
Dictionary<string, string> wordsAndDefinitions = new Dictionary<string, string>(){
{"bitcoin", "magic internet money"},
{"shitcoins", "non magic scam money"},
{"satoshi", "me muhahaha ;)"}
wordsAndDefinitions.Add("Awesome", "The feeling of students when they are learning C#");
wordsAndDefinitions.Add("C#", "An object oriented programming language(OOP");
wordsAndDefinitions.Add("4 Pillars of OOP", "abstraction, encapsulation, inheritance, and polymorphism");
Console.WriteLine("Returns the value(defintion) of the key specified, ex: nameOfDictionary[key]");
Console.WriteLine(wordsAndDefinitions["bitcoin"]);
Console.WriteLine(wordsAndDefinitions["satoshi"]);
foreach (KeyValuePair<string, string> word in wordsAndDefinitions)
Console.WriteLine($" -{word.Key}- Definition: {word.Value}");