Hi,
Is it possible to do something like the the following:
IBaseClass objClass = new LoadClassFromDL L( "Module.DLL ");
ThreadStart objThreadStart= new
(objClass.GetFu nctionFromName( "GetString" ))
Thread objThread = new Thread (objThreadStart )
objThread.Start ();
bearing in mind the function 'GetFunctionFro mName' doesn't actually exist,
and I don't know how to implement it (I've sorted out the 'LoadClassFromD LL'
function).
Thanks in Advance.
Regards,
Ahmad
Is it possible to do something like the the following:
IBaseClass objClass = new LoadClassFromDL L( "Module.DLL ");
ThreadStart objThreadStart= new
(objClass.GetFu nctionFromName( "GetString" ))
Thread objThread = new Thread (objThreadStart )
objThread.Start ();
bearing in mind the function 'GetFunctionFro mName' doesn't actually exist,
and I don't know how to implement it (I've sorted out the 'LoadClassFromD LL'
function).
Thanks in Advance.
Regards,
Ahmad
Comment