Экспериментировал с потоками тут, что то не могу разобраться. Наверное ошибка простая, просто я многого не знаю.
Ошибка: An object reference is required to access non-static member 'app.MainClass.funcThread()'
using System;
using System.Threading;
using System.Text;
namespace app
{
class MainClass
{
public static string a;
public static void Main (string[] args)
{
Console.Write("Введите количество потоков:");
int countthreads = Int32.Parse(Console.ReadLine());
for (int i = 0; i < countthreads; i++) {
Thread myThread;
myThread = new Thread(funcThread());
myThread.Start ();
}
}
void funcThread()
{
while (true)
{
Console.WriteLine("Помогите!");
}
}
}
}