我想要做的是从文件 text.txt 中读取数字,并将它们加在一起文件包含
86
97
144
26
都在自己的路线上。我被难住了:L
这是我的代码:
namespace CH13EX1
{
class CH13EX1
{
static void Main(string[] args)
{
// opens the file
StreamReader inFile;
// tests to make sure the file exsits
if (File.Exists("text.txt"))
{
// declrations
string inValue;
int total;
int number;
// makes infile the file
inFile = new StreamReader("text.txt");
// loop to real the files
while ((inValue = inFile.ReadLine()) != null)
{
number = int.Parse(inValue);
Console.WriteLine("{0}", number);
}
}
}
}
}