SiroKuro #4721(2007/12/10 13:13 GMT) [ C# ] Rating1/1=1.00
see: Thread コンストラクタ (ThreadStart, Int32)
1 2 3 4 5 6 7 8 9 10 11
using System; static class Program { static void Main() { new System.Threading.Thread(Test, 1024 * 1024).Start(); } static long cnt = 0; static void Test() { Console.WriteLine(cnt++); Test(); } }
Rating1/1=1.00-0+
[ reply ]
SiroKuro
#4721()
[
C#
]
Rating1/1=1.00
see: Thread コンストラクタ (ThreadStart, Int32)
Rating1/1=1.00-0+
[ reply ]