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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T12:03:48+00:00 2026-06-04T12:03:48+00:00

I wonder if there is a possibility to make the dynamic type for variables

  • 0

I wonder if there is a possibility to make the “dynamic” type for variables work for anonymous delegates.

I’ve tried the following:

dynamic v = delegate() {
};

But then I got the following error message:

Cannot convert anonymous method to type 'dynamic' because it is not a delegate type

Unfortunately, also the following code doesn’t work:

Delegate v = delegate() {
};
object v2 = delegate() {
};

What can I do if I want to make a Method that accepts any type of Delegate, even inline declared ones?

For example:

class X{
    public void Y(dynamic d){
    }
    static void Main(){
        Y(delegate(){});
        Y(delegate(string x){});
    }
}
  • 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-04T12:03:49+00:00Added an answer on June 4, 2026 at 12:03 pm

    This works, but it looks a little odd. You can give it any delegate, it will run it and also return a value.

    You also need to specify the anonymous method signature at some point in order for the compiler to make any sense of it, hence the need to specify Action<T> or Func<T> or whatever.

    Why can't an anonymous method be assigned to var?

        static void Main(string[] args)
        {
            Action d = () => Console.WriteLine("Hi");
            Execute(d); // Prints "Hi"
    
            Action<string> d2 = (s) => Console.WriteLine(s);
            Execute(d2, "Lo"); // Prints "Lo"
    
            Func<string, string> d3 = (s) =>
            {
                Console.WriteLine(s);
                return "Done";
            };
            var result = (string)Execute(d3, "Spaghettio"); // Prints "Spaghettio"
    
            Console.WriteLine(result); // Prints "Done"
    
            Console.Read();
        }
    
        static object Execute(Delegate d, params object[] args)
        {
            return d.DynamicInvoke(args);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to Ruby on Rails but I wonder if there is possibility to
I wonder if there is a (native) possibility to create a MySQL table from
I wonder if there is a possibility in c++ to achieve the same cast
I wonder if there is a possibility to (visually and functionally) link two controls(components)?
I wonder if there are any possibility to reset css in middle of page?
I wonder if there's a way to do the following: I have a structure
I wonder if there is any possibility to find out the max length of
I wonder if there is any possibility to position a Tabbed pane to the
I wonder there might be a built-in feature in Groovy, something like aCollection.doEachBulk(100) {
I just wonder there a way to display the files in document directory with

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.