Hi   I recently discovered that I can create a .NET DLL, and mark some classes in it as ComVisible(true), and then access that DLL from AutoIt as if it was a regular COM DLL!!     This is done by creating a class in the .NET DLL, and then instantiating it in AutoIt, via ObjCreate().   This is terrific discovery for me.         My question: Is it also possible, in addition to ObjCreate(), to call a method, via DllCall()? (instead of ObjCreate())     If yes, how do I do it?     Thank you very much