Esempio n. 1
0
        public void Export_CSV(string FileName, eSpreadsheetUpdateMode UpdateMode, char Separator = ',')
        {
            LanguageSource source = (LanguageSource)target;

            string CSVstring = source.Export_CSV(null, Separator);

            System.IO.File.WriteAllText(FileName, CSVstring, System.Text.Encoding.UTF8);
        }
        public void Export_CSV(string FileName, eSpreadsheetUpdateMode UpdateMode, char Separator, System.Text.Encoding encoding)
        {
            LanguageSource source = (LanguageSource)target;

            string CSVstring = source.Export_CSV(null, Separator, mProp_Spreadsheet_SpecializationAsRows.boolValue);

            System.IO.File.WriteAllText(FileName, CSVstring, encoding);
        }