在winform里拖入一个datagridview控件,跟一个openfiledialog控件,这个例子的功能只是读取excel文件,其他的功能本人还在研究当中
献上代码
using System;
using System.Collections.Generic;
using System.Compo ...……
1.简单实例
//备份还原mysql
public static void TestOne()
{
Process p = new Process();
p.StartInfo.FileName = amp;quot;cmd.exeamp;quot;;
p.StartInfo.UseShellExecute = false;
p.StartInfo ...……