About 716,000 results
Open links in new tab
  1. Func<T,TResult> Delegate (System) | Microsoft Learn

    In particular, because many methods of types in the System.Linq namespace have Func<T,TResult> parameters, you can pass these methods a lambda expression without …

  2. Func Delegate C# - GeeksforGeeks

    Sep 26, 2025 · In C#, Func is a built-in generic delegate type that represents a method returning a value. It simplifies working with delegates by removing the need to explicitly declare custom …

  3. What is Func, how and when is it used - Stack Overflow

    Jul 16, 2015 · The Func is a custom delegate defined in System namespace that allows you to point to a method with the same signature (as delegates do), using 0 to 16 input parameters …

  4. Func delegate in C# - TutorialsTeacher.com

    Func delegate type can be used with an anonymous method or lambda expression. C# includes built-in generic delegate types Func and Action, so that you don't need to define custom …

  5. What is Func Keyword in C#? Main Usages ⭐ - DEV Community

    Jun 5, 2024 · Func keyword acts as a bridge between delegates and lambda expressions. This fusion provides more expressive ways to encode algorithms, enhancing the flexibility in …

  6. C# Func Delegate Tutorial: Mastering Functional Programming

    Apr 22, 2025 · Master the C# Func delegate for functional programming. This comprehensive tutorial explores Func usage with lambda expressions, LINQ, and advanced examples.

  7. Action and Func Delegates in C# – Explained with Examples

    Jul 6, 2023 · C# offers various delegates, and two commonly used ones are Action and Func, both defined in the System namespace. In this tutorial, you'll learn about the Action and Func …