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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:12:22+00:00 2026-05-23T17:12:22+00:00

Func<T, TResult> delegate is for a delegate with a single param and return type

  • 0

Func<T, TResult> delegate is for a delegate with a single param and return type of TResult.

Is this a special delegate or is it something we can code ourselves manually?

e.g. could I create a Func<T, TResult> but that accepts 2 input params?

  • 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-23T17:12:22+00:00Added an answer on May 23, 2026 at 5:12 pm

    "Func" is actually a family of classes in the System namespace, namely:

    Func<TResult> (0 params), Func<T,TResult> (1 param), Func<T1,T2,TResult> (2 params) … Func(17) (16 params).

    There are 17 different “Func” classes total, supporting from 0 to 16 parameters. It is allowable for them to share the name in code (“Func”) even though they are actually different types (Func, Func', Func'', etc) thanks to how Generics work in .NET — the number of generics determines/disambiguate which actual type is used.

    Happy coding.


    As far as converting between delegates, this may be of use (runs in LINQPad, “C# Program”):

    delegate int MyDelegate (int y);
    
    void Main()
    {
        Func<int,int> fun1 = (q) => q * q;
        MyDelegate del = new MyDelegate(fun1); // Convert the "Func" delegate to custom...
        Func<int,int> fun2 = new Func<int,int>(del); // ...and back
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've written this code: public List<TResult> SelectAll<TResult>(Func<Regions, TResult> selector) where TResult : class {
I saw here that Func<(Of <(T1, T2, T3, T4, TResult>)>) Delegate was the last
I'm using an anonymous delegate in my code calling this example function: public static
I have a generic method like this (simplified version): public static TResult PartialInference<T, TResult>(Func<T,
I get following error: error CS0305: Using the generic type 'System.Func<T1,T2,T3,T4,T5,T6,T7,T8,T9,TResult>' requires '10' type
Looking at the signatures for the Func and Converter delegates, public delegate TResult Func<T,
I have two functions in my class with this signatures, public static TResult Execute<TResult>(Func<T,
I have extension method: public static IQueryable<TResult> WithFieldLike<TResult>( this IQueryable<TResult> query, Func<TResult, string> field,
In .NET 4.0, have a built-in delegate method: public delegate TResult Func<in T, out
Given the following code, public T Execute<T>(Func<T> methodParam) { return methodParam (); } public

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.