C# LINQ Background Topics
player_one
127.2K views
Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Delegates - Delegate declarations
Why learn about delegates?
When learning LINQ, it is important to have a good understanding of delegates in C#. Many of the more powerful capabilities of LINQ make use of delegates.
What is a delegate?
A delegate is simply a reference to a method. Delegates can be stored and passed around in a variable, and hence they must have a type definition:
private delegate int FuncTwoInts(int one, int two);
The line above defines the type FuncTwoInts
. The FuncTwoInts
type is a reference to a method that takes two int
parameters and returns a single int
result.
Exercise
Declare a new type SayHello
as a delegate that takes a single string
parameter and returns a string
result.
Delegates Exercise
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace Delegates1
{
// Uncomment the SayHello delegate declaration
//
// Following the example in the lesson, declare the
// type SayHello as a delegate that takes a single
// string parameter and returns a string result.
// public ... SayHello ...
public static class DelegatesExercise1
{
public static void CallSayHelloDelegate(SayHello func)
{
Exercise.PrintAnswer(func("World"));
Exercise.PrintAnswer(func("my baby"));
Exercise.PrintAnswer(func("my honey"));
}
}
}
Enter to Rename, Shift+Enter to Preview
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content