using System.Threading; using System; class Test{ public static int Hoge(int n){ return n*2; } public static void Main(){ int a = 10; Thread t = new Thread(delegate(){ int r = Hoge(a); Console.Write(r); }); t.Start(); t.Join(); } }