我有一个<code>args[0]</code>的字符串。
这是我迄今为止的代码:
static void Main(string[] args)
{
string latestversion = args[0];
// create reader & open file
using (StreamReader sr = new StreamReader("C:\Work\list.txt"))
{
while (sr.Peek() >= 0)
{
// code here
}
}
}
我想检查我的list.txt
文件是否包含args[0]
。如果是,则我将创建另一个进程StreamWriter
,将字符串1
或0
写入文件。我该怎么做?