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

  • SEARCH
  • Home
  • 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 7723063
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T04:20:57+00:00 2026-06-01T04:20:57+00:00

I have a method in a class in another file that I want to

  • 0

I have a method in a class in another file that I want to take a dynamic method. I’m having some difficulty negotiating the setup. Any help would be appreciated, thanks!

for example…

File #1:

class DoSomethingClass
{
    // define delegate
    public delegate void DelegateMethod();

    public void Main()
    {
        DelegateMethod d = Func1;       
        AnotherClass.CallsDynamicMethod("Test1", d);

        d = Func2;
        AnotherClass.CallsDynamicMethod("Test2", d);

        // will this work?
        // AnotherClass.CallsDynamicMethod("Test3", DoSomethingClass.instance.Func3);
    }


    // candidate methods for delegation
    void Func1()
    {   Console.WriteLine("calling Func1"); }

    void Func2()
    {   Console.WriteLine("calling Func2"); }   

    public void Func3()
    {   Console.WriteLine("calling Func3"); }   
}    



File #2:

class AnotherClass
{   
    public static void CallsDynamicMethod(string words, DelegateMethod dynamicMethod)
    {
        Console.WriteLine("this is a " + words + " to call...");
        dynamicMethod();
    }
}
  • 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-06-01T04:20:58+00:00Added an answer on June 1, 2026 at 4:20 am

    Hope this answers your problem

     class Program
    {
        static void Method()
        {
            Console.WriteLine("Method");
        }
    
        static void Main(string[] args)
        {
            Action a = Method;
    
            MyClass.SomeMethod(a);
            MyClass.SomeMethod(Method);
    
            Console.ReadLine();
        }
    }
    
    class MyClass
    {
        public static void SomeMethod(Action del)
        {
            del();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a method which calls for a classmethod of another class def get_interface_params_by_mac(self,
I have a class (RInterfaceHL) that calls another class (JRIEngine) which provides native methods
I have class method that returns a list of employees that I can iterate
I have method in a class that I need to make sure is only
You have a method on a class that has 2 parameters, one of which
Here's my problem: I have a virtual method defined in a .h file that
I have a ViewController with a nib file and want to delegate code that
I want to use imports inside a class that is then inherited by another
I have some code in a reusable class that modifies some types. Here's a
I have a class with a custom each-method: class CurseArray < Array def each_safe

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.