How can I do this in c#? I have GUI and worker threads and I have to pass the array or be able to access the array from worker array?!
Thread t = new Thread (delegate() { DoWork (double[,] data); });
t.Start();
static void DoWork (double[,] data) { do some work...; }