예제 #1
0
    public static string GetDescription(string key)
    {
        dict = isIta ? ReadCSV.getDictIta() : ReadCSV.getDictEng();

        if (dict.ContainsKey(key))
        {
            return(dict[key]);
        }
        else
        {
            return(key);
        }
    }