using System.Collections.Generic;
public static void Main()
Console.WriteLine(getDescription("DLSC"));
Console.WriteLine(getDescription("me"));
public static string getDescription (string key){
Dictionary<string, string> descDict = new Dictionary<string, string>(){
{"RTSC_DLVC", "RTSC_DLVC - Default Value" },
{"DLSC", "DLSC - Delta Schedule Change Create Event" }
if (descDict.ContainsKey(key))
return key + " - Default Value";