I'm looking to expose specific .Net types to the IronPython runtime. I can do this:
ScriptEngine engine = Python.CreateEngine();
ScriptScope scope = engine.CreateScope();
engine.Runtime.LoadAssembly(typeof(Program).Assembly); // current assembly with types
But that exposes all types to the runtime. Is selective type loading possible?