using System.Collections.Generic;
using System.Collections.Specialized;
public static void Main()
List<Dictionary<string, string>> dictionaryOfWords = new List<Dictionary<string, string>>();
Dictionary<string, string> excited = new Dictionary<string, string>();
excited.Add("word", "excited");
excited.Add("definition", "having, showing, or characterized by a heightened state of energy, enthusiasm, eagerness");
excited.Add("part of speech", "adjective");
excited.Add("example sentence", "I am excited to learn C#!");
dictionaryOfWords.Add(excited);
Dictionary<string, string> bitcoin = new Dictionary<string, string>();
bitcoin.Add("word", "bitcoin");
bitcoin.Add("definition", "majik internet monies");
bitcoin.Add("part of speech", "noun");
bitcoin.Add("example sentence", "I am excited to stack bitcoin sats");
dictionaryOfWords.Add(bitcoin);
Dictionary<string, string> computers = new Dictionary<string, string>();
computers.Add("word", "computers");
computers.Add("definition", "boxes for data");
computers.Add("part of speech", "noun");
computers.Add("example sentence", "I am excited to computer");
dictionaryOfWords.Add(computers);
foreach (Dictionary<string, string> list in dictionaryOfWords)
Console.WriteLine("excited");
foreach (KeyValuePair<string, string> word in list)
Console.WriteLine($"{word.Key}: {word.Value} ");