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 1048371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:26:42+00:00 2026-05-16T16:26:42+00:00

So, i have an assembly that i loaded into the interface, and it works

  • 0

So, i have an assembly that i loaded into the interface, and it works perfectly:

MarshalByRefObject pluginObject = ...
ecko.Plugins.Interface.Plugin plug = pluginObject as ecko.Plugins.Interface.Plugin;

but, allthough i will have alot of methods in the interface, i will have to execute methods that are dynamic, and determined from information in the interface.. so basically, i need to call methods that are not in my interface, and i wont know the name of until last minute..

this is what i have tried (using the “Execute” methods as an example):

 plug.GetType().GetMethod("Execute").Invoke((what-the-hell-do-i-put-here), new object[] { });

am i on the right track? please guide me 🙂

thanks.

  • 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-16T16:26:43+00:00Added an answer on May 16, 2026 at 4:26 pm

    If you want to use Reflection then the missing piece in your code is:

     MethodInfo meth = plug.GetType().GetMethod("Execute");
     meth.Invoke(plug, new object[] { }); 
    

    The first parameter of the Invoke method should be the instance that you want to invoke the method on. This is required because meth is just an abstract description of the method (and is not associated with any instance). This is useful if you want to call the method on multiple instances (you could cache the meth value).

    If you’re using C# 4.0, then you can use the new dynamic feature (assuming that “Execute” is a name that does not change):

    dynamic plugDynamic = plug;
    plugDynamic.Execute( /* arguments */ );
    

    If a variable is declared as dynamic in C# 4.0, then you can call any methods you want and the method resolution will be done at runtime (similar to Reflection, but a bit more complicated and a bit more efficient).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Delphi 5 executable that calls into a .NET assembly via the
I have an assembly that may be used by more than one process at
I have an assembly that is targeted for .NET 3.5. I have an application
I have a .NET assembly that contains classes to be registered as ServicedComponent through
I have a .net assembly that has a COM+ ServicedCopmonent in it and at
I have a .NET project which references another assembly that is built outside of
So i have a piece of assembly that needs to call a function with
I have an ASP.NET webpage running under IIS that uses a common assembly that
I have a C# (2008/.NET 3.5) class library assembly that supports WPF (based on
If I update an Assembly that holds a workflow, I have to restart the

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.