Esempio n. 1
0
        public static void ExportDataCSVFile(string CSV_Header, string CSV_Content, string CSV_FilePath)
        {
            try
            {
                if (!File.Exists(CSV_FilePath))
                {
                    GramBoardProFileHelper.AppendStringToTextFile(CSV_FilePath, CSV_Header);
                }

                GramBoardProFileHelper.AppendStringToTextFile(CSV_FilePath, CSV_Content);
            }
            catch (Exception)
            {
            }
        }