Skip to content

Latest commit

 

History

History
 
 

Delegates

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Readme - Code Samples for Chapter 8, Delegates, Lambdas, and Events

This chapter contains the following code samples:

  • GetAStringDemo (declaring a delegate to a simple method)
  • SimpleDelegates (declaring and instantiating delegates)
  • BubbleSorter (Sort method using a Func delegate)
  • MulticastDelegates (invoking multiple methods with a single delegate)
  • LambdaExpressions (creating lambda expressions)
  • AnonymousMethods (using the delegate keyword to declare an anonymous method)
  • EventsSample (subscribing and publishing events, event keyword)

To build and run the .NET Core samples, please install one of these tools:

  • Visual Studio 2017 Update 5 with the .NET Core workload
  • Visual Studio for Mac
  • Visual Studio Code

Please download and install the tools from .NET Core downloads.

For code comments and issues please check Professional C#'s GitHub Repository

Please check my blog csharp.christiannagel.com for additional information for topics covered in the book.

Thank you!