├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── CONTRIBUTING.md ├── Finished ├── Delegates │ ├── AnonymousDelegates │ │ ├── AnonymousDelegates.csproj │ │ └── Program.cs │ ├── BasicDelegates │ │ ├── BasicDelegates.csproj │ │ └── Program.cs │ ├── Composable │ │ ├── Composable.csproj │ │ └── Program.cs │ ├── Composable2 │ │ ├── Composable2.csproj │ │ └── Program.cs │ └── DelegatesSolution │ │ ├── DelegatesSolution.csproj │ │ ├── Program.cs │ │ └── Shipping.cs ├── Events │ ├── BasicEvents │ │ ├── BasicEvents.csproj │ │ └── Program.cs │ ├── ChainedEvents │ │ ├── ChainedEvents.csproj │ │ └── Program.cs │ └── EventsSolution │ │ ├── EventsSolution.csproj │ │ └── Program.cs └── Lambdas │ ├── BasicLambdas │ ├── BasicLambdas.csproj │ └── Program.cs │ ├── LambdaDelegates │ ├── LambdaDelegates.csproj │ └── Program.cs │ └── LambdasSolution │ ├── LambdasSolution.csproj │ └── Program.cs ├── LICENSE ├── NOTICE ├── README.md └── Start ├── Delegates ├── AnonymousDelegates │ ├── AnonymousDelegates.csproj │ └── Program.cs ├── BasicDelegates │ ├── BasicDelegates.csproj │ └── Program.cs ├── Composable │ ├── Composable.csproj │ └── Program.cs ├── Composable2 │ ├── Composable2.csproj │ └── Program.cs └── DelegatesSolution │ ├── DelegatesSolution.csproj │ └── Program.cs ├── Events ├── BasicEvents │ ├── BasicEvents.csproj │ └── Program.cs ├── ChainedEvents │ ├── ChainedEvents.csproj │ └── Program.cs └── EventsSolution │ ├── EventsSolution.csproj │ └── Program.cs └── Lambdas ├── BasicLambdas ├── BasicLambdas.csproj └── Program.cs ├── LambdaDelegates ├── LambdaDelegates.csproj └── Program.cs └── LambdasSolution ├── LambdasSolution.csproj └── Program.cs /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log 5 | bin/ 6 | obj/ 7 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Finished/Delegates/AnonymousDelegates/AnonymousDelegates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Delegates/AnonymousDelegates/AnonymousDelegates.csproj -------------------------------------------------------------------------------- /Finished/Delegates/AnonymousDelegates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Delegates/AnonymousDelegates/Program.cs -------------------------------------------------------------------------------- /Finished/Delegates/BasicDelegates/BasicDelegates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Delegates/BasicDelegates/BasicDelegates.csproj -------------------------------------------------------------------------------- /Finished/Delegates/BasicDelegates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Delegates/BasicDelegates/Program.cs -------------------------------------------------------------------------------- /Finished/Delegates/Composable/Composable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Delegates/Composable/Composable.csproj -------------------------------------------------------------------------------- /Finished/Delegates/Composable/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Delegates/Composable/Program.cs -------------------------------------------------------------------------------- /Finished/Delegates/Composable2/Composable2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Delegates/Composable2/Composable2.csproj -------------------------------------------------------------------------------- /Finished/Delegates/Composable2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Delegates/Composable2/Program.cs -------------------------------------------------------------------------------- /Finished/Delegates/DelegatesSolution/DelegatesSolution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Delegates/DelegatesSolution/DelegatesSolution.csproj -------------------------------------------------------------------------------- /Finished/Delegates/DelegatesSolution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Delegates/DelegatesSolution/Program.cs -------------------------------------------------------------------------------- /Finished/Delegates/DelegatesSolution/Shipping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Delegates/DelegatesSolution/Shipping.cs -------------------------------------------------------------------------------- /Finished/Events/BasicEvents/BasicEvents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Events/BasicEvents/BasicEvents.csproj -------------------------------------------------------------------------------- /Finished/Events/BasicEvents/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Events/BasicEvents/Program.cs -------------------------------------------------------------------------------- /Finished/Events/ChainedEvents/ChainedEvents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Events/ChainedEvents/ChainedEvents.csproj -------------------------------------------------------------------------------- /Finished/Events/ChainedEvents/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Events/ChainedEvents/Program.cs -------------------------------------------------------------------------------- /Finished/Events/EventsSolution/EventsSolution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Events/EventsSolution/EventsSolution.csproj -------------------------------------------------------------------------------- /Finished/Events/EventsSolution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Events/EventsSolution/Program.cs -------------------------------------------------------------------------------- /Finished/Lambdas/BasicLambdas/BasicLambdas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Lambdas/BasicLambdas/BasicLambdas.csproj -------------------------------------------------------------------------------- /Finished/Lambdas/BasicLambdas/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Lambdas/BasicLambdas/Program.cs -------------------------------------------------------------------------------- /Finished/Lambdas/LambdaDelegates/LambdaDelegates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Lambdas/LambdaDelegates/LambdaDelegates.csproj -------------------------------------------------------------------------------- /Finished/Lambdas/LambdaDelegates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Lambdas/LambdaDelegates/Program.cs -------------------------------------------------------------------------------- /Finished/Lambdas/LambdasSolution/LambdasSolution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Lambdas/LambdasSolution/LambdasSolution.csproj -------------------------------------------------------------------------------- /Finished/Lambdas/LambdasSolution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Finished/Lambdas/LambdasSolution/Program.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/README.md -------------------------------------------------------------------------------- /Start/Delegates/AnonymousDelegates/AnonymousDelegates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Delegates/AnonymousDelegates/AnonymousDelegates.csproj -------------------------------------------------------------------------------- /Start/Delegates/AnonymousDelegates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Delegates/AnonymousDelegates/Program.cs -------------------------------------------------------------------------------- /Start/Delegates/BasicDelegates/BasicDelegates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Delegates/BasicDelegates/BasicDelegates.csproj -------------------------------------------------------------------------------- /Start/Delegates/BasicDelegates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Delegates/BasicDelegates/Program.cs -------------------------------------------------------------------------------- /Start/Delegates/Composable/Composable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Delegates/Composable/Composable.csproj -------------------------------------------------------------------------------- /Start/Delegates/Composable/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Delegates/Composable/Program.cs -------------------------------------------------------------------------------- /Start/Delegates/Composable2/Composable2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Delegates/Composable2/Composable2.csproj -------------------------------------------------------------------------------- /Start/Delegates/Composable2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Delegates/Composable2/Program.cs -------------------------------------------------------------------------------- /Start/Delegates/DelegatesSolution/DelegatesSolution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Delegates/DelegatesSolution/DelegatesSolution.csproj -------------------------------------------------------------------------------- /Start/Delegates/DelegatesSolution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Delegates/DelegatesSolution/Program.cs -------------------------------------------------------------------------------- /Start/Events/BasicEvents/BasicEvents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Events/BasicEvents/BasicEvents.csproj -------------------------------------------------------------------------------- /Start/Events/BasicEvents/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Events/BasicEvents/Program.cs -------------------------------------------------------------------------------- /Start/Events/ChainedEvents/ChainedEvents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Events/ChainedEvents/ChainedEvents.csproj -------------------------------------------------------------------------------- /Start/Events/ChainedEvents/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Events/ChainedEvents/Program.cs -------------------------------------------------------------------------------- /Start/Events/EventsSolution/EventsSolution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Events/EventsSolution/EventsSolution.csproj -------------------------------------------------------------------------------- /Start/Events/EventsSolution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Events/EventsSolution/Program.cs -------------------------------------------------------------------------------- /Start/Lambdas/BasicLambdas/BasicLambdas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Lambdas/BasicLambdas/BasicLambdas.csproj -------------------------------------------------------------------------------- /Start/Lambdas/BasicLambdas/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Lambdas/BasicLambdas/Program.cs -------------------------------------------------------------------------------- /Start/Lambdas/LambdaDelegates/LambdaDelegates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Lambdas/LambdaDelegates/LambdaDelegates.csproj -------------------------------------------------------------------------------- /Start/Lambdas/LambdaDelegates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Lambdas/LambdaDelegates/Program.cs -------------------------------------------------------------------------------- /Start/Lambdas/LambdasSolution/LambdasSolution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Lambdas/LambdasSolution/LambdasSolution.csproj -------------------------------------------------------------------------------- /Start/Lambdas/LambdasSolution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/c-sharp-delegates-events-and-lambdas-3006906/HEAD/Start/Lambdas/LambdasSolution/Program.cs --------------------------------------------------------------------------------