R
Romain TAILLANDIER
Hi group
I have have different C# DLL.
Each containing one class, responding to an interface ImyClass.
i want to import the full class from one of this dll
something like :
[DllImport("myDll"..)] MyClass;
Or, I want to create an instance of the class, wich seems to be easier ...
Something like :
MyClass A = New [DllImport("MyDll"...)] MyClass();
How Can I do ?
(Am I clear ?? :s)
Thank for help
ROM
I have have different C# DLL.
Each containing one class, responding to an interface ImyClass.
i want to import the full class from one of this dll
something like :
[DllImport("myDll"..)] MyClass;
Or, I want to create an instance of the class, wich seems to be easier ...
Something like :
MyClass A = New [DllImport("MyDll"...)] MyClass();
How Can I do ?
(Am I clear ?? :s)
Thank for help
ROM