我对编程很陌生,希望你能帮助我。我的任务是创建 3 个不同的线程来读取具有给定 int 的 txt 文件。然后它必须打印出这些值的总和。我想从我制作的三个线程中访问 int 。我怎样才能做到这一点?
这是我的一些代码:
class Program
{
static void Main()
{
Thread t1 = new Thread(ReadFile1);
Thread t2 = new Thread(ReadFile2);
Thread t3 = new Thread(ReadFile3);
t1.Start();
t2.Start();
t3.Start();
System.Console.WriteLine("Sum: ");
Console.WriteLine();
Console.WriteLine("");
System.Console.ReadKey();
}
public static void ReadFile1()
{
System.IO.StreamReader file1 = new System.IO.StreamReader({FILEDESTINATION});
int x = int.Parse(file1.ReadLine());
}