using System.Collections.Generic;
public static void Main()
Dictionary<string,string> dict = new Dictionary<string, string>();
dict.Add("Home", "Alerter");
dict.Add("Query Manager", "Alerter/Querys");
dict.Add("Defintion Manager", "Alerter/Defitions");
foreach(KeyValuePair<string, string> feature in dict) {
Console.WriteLine($"{feature.Key}, {feature.Value}");