Hi everyone,
I am attempting to learn about threads and multithreading in VB.net and stumbled across a tutorial online. I was following until the article, which is in C# did this:
Does anyone know what this is doing and how to translate this into vb.net? thank you
I am attempting to learn about threads and multithreading in VB.net and stumbled across a tutorial online. I was following until the article, which is in C# did this:
Code:
// update the grid a thread safe fasion!
MethodInvoker updateGrid = delegate
{
m_grid.DataSource = ds.Tables(0)
}
Does anyone know what this is doing and how to translate this into vb.net? thank you