From what I\'ve found in C#, the Control.Invoke method requires that you use a delegate with no input parameters. Is there any way around this? I would like to invoke a me
Why not
tvMatrix.Invoke((MethodInvoker) (() => { tvMatrix.Nodes[0].Nodes.Add(id.ToString(), typename); }));