I have the following code:
public void Test(IMyInterface iInterface) { iInterface.CallMethod ( ); }
Which works fine. However, if I chang
I got an advice and it helped me!
Find in the main thread (Program.cs) the line [STAThread] and change it to [MTAThread].