コード例 #1
0
ファイル: Program.cs プロジェクト: gnthackray1978/and-sources
        private static void CreateSourceCSV(CsImportCsv csImportCsv)
        {
            File.WriteAllText(Destination, csImportCsv.CreateSourceCSV());

            if (File.Exists(Destination))
            {
                Process.Start("explorer.exe", Destination);
            }
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: gnthackray1978/and-sources
        static void Main(string[] args)
        {
            var csImportCsv = new CsImportCsv();

            try
            {

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

            }

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