Na videu zde: http://server1.streaming.cesnet.cz:8080/ramgen/others/su-cvut/prog_vecery/2003-11-24.rm
jsem viděl tento kód (cca 17. minuta -"malej Linux"):
using System;
using System.Threading;
class App
{
static void a();
{
for(int i=0; i<10000; i++)
Console.Write("A");
}
static void b();
{
for(int i=0; i<10000; i++)
Console.Write("B");
}
static void Main();
{
Thread t1 = new Thread(new ThreadStart(a));
Thread t2 = new Thread(new ThreadStart(b));
t1.Start();
t2.Start();
}
}
Mě ale vyhodí hromadu chyb. Potřeboval bych poradit, jak to zprovoznit.