如何在C#控制台应用程序中保存数据?

时间:2012-08-20 04:48:41

标签: c# console

嗨朋友我是C#Console应用程序的新手,我需要从Command获取数据以保存数据,并为Ex提供一些逻辑。

[ In Command Prompt I  have to  Write \]

我必须写这个命令

 myfile.exe  -o(parm) MyTable  Xml Filepath 

如何在我的代码上获取这些命令?

1 个答案:

答案 0 :(得分:2)

如果我正确理解你的问题,那么你想要使用的是你的Main函数用作参数的args的字符串数组。

这里有一个基本教程:http://www.dotnetperls.com/main