Exemplo n.º 1
0
        protected T ReadJsonFile <T>(string filePath)
        {
            string fullPath = Path.Join(GetDataDirectoryPath(), filePath) + ".json";

            return(ParsingUtils.ReadJsonFile <T>(fullPath));
        }