We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaf4acb commit 4d9c499Copy full SHA for 4d9c499
Updates.md
@@ -1,7 +1,17 @@
1
-# Book Updates
+# Book Updates and Issues
2
3
> See [.NET 6 Updates](Dotnet6Updates.md) for changes with .NET 6
4
5
+## Chapter 7, Delegates, Lambdas and Events
6
+
7
+Page 190, the event name should be `NewCarCreated` instead of `NewCarInfo`:
8
9
+```csharp
10
+ public event EventHandler<CarInfoEventArgs>? NewCarCreated;
11
+```
12
13
+[See source code](https://github.com/ProfessionalCSharp/ProfessionalCSharp2021/blob/main/1_CS/Delegates/EventsSample/CarDealer.cs)
14
15
## Chapter 20, Security
16
17
Page 560, the command
0 commit comments