Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6950631
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:06:59+00:00 2026-05-27T14:06:59+00:00

I am writing a simple plugin system for my .NET app written in C#.

  • 0

I am writing a simple plugin system for my .NET app written in C#. I am trying to use IronPython to accomplish this.

In my .NET code I have created an interface IPlugin, which all Plugins must implement.
Users of the program specify a path to the python file, which can have many classes within them that implement IPlugin, as well as classes that don’t.

The issue I am having is once I have got a CompiledCode object and its ScriptScope, I want to iterate through all the classes defined in the code, and then instantiate new instances of those that implement the IPlugin interface. I have no idea how to do this, besides blindly instantiating all IronPythonType objects, and then checking if the resulting object is of type IPlugin. This is not ideal.

Here is a snippet of the code I currently have in place.

        public void LoadPlugins(string filePath) {
        try {
            ScriptSource script = _ironPythonEngine.CreateScriptSourceFromFile(filePath);
            CompiledCode code = script.Compile();
            ScriptScope scope = _ironPythonEngine.CreateScope();
            var result = code.Execute(scope);

            foreach (var obj in scope.GetItems().Where(kvp => kvp.Value is PythonType)) {
                var value = obj.Value;
                var newObject = value();
                if (newObject is IPlugin) {
                    // Success. Call IPlugin methods.
                } else {
                    // Just created an instance of something that is not an IPlugin - this is not ideal.
                }
            }

        } catch (Exception) {
            // Handle exceptions
        }
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T14:07:00+00:00Added an answer on May 27, 2026 at 2:07 pm

    Try PythonOps.IsSubClass(). I haven’t tested it, but this should work:

    if(PythonOps.IsSubClass(value, DynamicHelpers.GetPythonTypeFromType(typeof(IPlugin))) {
        // Success. Call IPlugin methods.
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a simple app that's going to have a tiny form sitting in
I'm writing a simple eclipse plugin, which is a code generator. User can choose
I'm writing a simple plugin based program. I have an interface IPlugin which has
I am just writing a simple plugin for my own use in a web
I am writing a simple GreaseMonkey script that has a jQuery plugin called hoverIntent
I am trying to start writing some simple jQuery plugins and for my first
I'm looking into writing simple graphics code in Android and I've noticed some synchronized()
I am currently writing a simple, timer-based mini app in C# that performs an
I'm writing a very simple Maven plugin, and I am kind of lost with
I'm trying to write a simple plugin for the flash player flowplayer (documentation for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.