예제 #1
0
        private void encryptFileToolStripMenuItem_Click(object sender, EventArgs e)
        {
            // Replace with File Dialogs
            var from = "C:\\Users\\th1nk\\Dropbox\\YAL\\LastAction.txt";
            var to   = "C:\\Users\\th1nk\\Dropbox\\YAL\\LastAction.cuneiform.txt";

            Cuneiform.fileToCuneiform(from, to);

            var result = File.ReadAllText("C:\\Users\\th1nk\\Dropbox\\YAL\\LastAction.cuneiform.txt");

            label1.Text = result;
        }