I’m having a hard time to connect my external C# application to a running Rhino instance. All examples show how to fire up new instances of Rhino (using Activator.CreateInstance
), but I want to connect to a running instance.
So far, I have found out this: because Rhino does not register in the Running Object Table (ROT), Marshal.GetActiveObject(..)
does not work.
Is this possible? If so, how?