Error: The name 'Invoke' does not exist in the current context
The class I am working on already has a base class so I can't have it implement something like Windows.Forms.Control.
I looked at article here but I don't want to implement another interface, and don't know what I would put in the methods.
This is a fairly low level C# adaptor program so it doesn't have access to the libraries most UI stuff would
EDIT I'm trying to do something like this
// On thread X
Invoke((m_delegate)delegate(){
// Do something on main thread
});