What's the correct way to pass parameters from VBScript to COM interface implemented in C#?
- by nopopem
I'm trying to expose a fairly simple C# class to COM which should be usable from VBScript (among others).
Some objects need to be created via COM calls and will be used in furter calls later on. The definition of the exposed classes and interfaces looks like this:
namespace Test
{
[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public…