Ejemplo n.º 1
0
        private static void CreateSourceCSV(CsImportCsv csImportCsv)
        {
            File.WriteAllText(Destination, csImportCsv.CreateSourceCSV());

            if (File.Exists(Destination))
            {
                Process.Start("explorer.exe", Destination);
            }
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            var csImportCsv = new CsImportCsv();

            try
            {

                UpdateKey();
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);

            }

            Console.WriteLine("finished");
            Console.ReadKey();
        }