重複の可能性:
C# ThreadStart with parameters
パラメーターが 1 つのメソッドを Thread C# に配置する方法。
例:
Thread thread = new Thread(SoundInputThread.getSomething(hz));
thread.Start();
for (int i = 0; i < 5; i++) {
Console.WriteLine();
Thread.Sleep(1000);
}
public static void getSomething(int hz) {
hz = 100;
Console.WriteLine();
}