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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T12:16:57+00:00 2026-05-20T12:16:57+00:00

I have just come across the following code (.NET 3.5), which doesn’t look like

  • 0

I have just come across the following code (.NET 3.5), which doesn’t look like it should compile to me, but it does, and works fine:

bool b = selectedTables.Any(table1.IsChildOf));

Table.IsChildOf is actually a method with following signature:

public bool IsChildOf(Table otherTable)

Am I right in thinking this is equivalent to:

bool b = selectedTables.Any(a => table1.IsChildOf(a));

and if so, what is the proper term for this?

  • 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-20T12:16:57+00:00Added an answer on May 20, 2026 at 12:16 pm

    This is a method group conversion, and it’s been available since C# 2. As a simpler example, consider:

    public void Foo()
    {
    }
    
    ...
    
    ThreadStart x = Foo;
    ThreadStart y = new ThreadStart(Foo); // Equivalent code
    

    Note that this is not quite the same as the lambda expression version, which will capture the variable table1, and generate a new class with a method in which just calls IsChildOf. For Any that isn’t important, but the difference would be important for Where:

    var usingMethodGroup = selectedTables.Where(table1.IsChildOf);
    var usingLambda = selectedTables.Where(x => table1.IsChildOf(x));
    table1 = null;
    
    // Fine: the *value* of `table1` was used to create the delegate
    Console.WriteLine(usingMethodGroup.Count());
    
    // Bang! The lambda expression will try to call IsChildOf on a null reference
    Console.WriteLine(usingLambda.Count());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The following doesn't come across as a cross-domain issue, but it smells like one.
I have a database which has almost 300 tables, I've just come across with
Today while writing some Visual C++ code I have come across something which has
I have just come across a Visual C++ option that allows you to force
I've just come across a database where all the character based columns have their
Have just started playing with ASP.NET MVC and have stumbled over the following situation.
I have come across a problem I just can't solve. I am using autocomplete
Just wondering if someone can assist me with the following issue. I have come
I have just started C++ and have come across references and have not understood
I've just come across a pretty strange problem with VS2010 and Script#, which most

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.