C#命令行传输参数
static void Main(string[] args)
{
var oo = args;
if (oo.Length > 0)
{
XLog.XTrace.WriteLine("收到下发的tif文件:" + oo[0]);
//System.Windows.Forms.MessageBox.Show(oo[0]);
}
}
static void Main(string[] args)
{
var oo = args;
if (oo.Length > 0)
{
XLog.XTrace.WriteLine("收到下发的tif文件:" + oo[0]);
//System.Windows.Forms.MessageBox.Show(oo[0]);
}
}