Example #1
0
    public string GetData(string filename, string key, string head)
    {
        CsvData data  = new CsvData();
        string  value = "";

        if (m_AllDatas.TryGetValue(filename, out data))
        {
            value = data.GetData(key, head);
        }
        else
        {
            value = "error";
        }
        return(value);
    }