Add item for page 362

This commit is contained in:
Mark J Price 2023-03-02 08:41:21 +00:00
parent bd844753f8
commit 1752ec5c6c
3 changed files with 16 additions and 4 deletions

View file

@ -1,4 +1,4 @@
**Errata** (30 items)
**Errata** (31 items)
If you find any mistakes, then please [raise an issue in this repository](https://github.com/markjprice/cs11dotnet7/issues) or email me at markjprice (at) gmail.com.
@ -26,6 +26,7 @@ If you find any mistakes, then please [raise an issue in this repository](https:
- [Page 322 - Revealing the location of a type](#page-322---revealing-the-location-of-a-type)
- [Page 330 - Publishing a self-contained app, Page 354 - Exercise 7.3 Explore PowerShell](#page-330---publishing-a-self-contained-app-page-354---exercise-73--explore-powershell)
- [Page 399 - Managing directories](#page-399---managing-directories)
- [Page 362 - Joining, formatting, and other string members](#page-362---joining-formatting-and-other-string-members)
- [Page 412 - Compressing streams](#page-412---compressing-streams)
- [Page 477 - Inserting entities](#page-477---inserting-entities)
- [Page 548 - Creating a class library for a Northwind database context](#page-548---creating-a-class-library-for-a-northwind-database-context)
@ -281,6 +282,10 @@ In Step 1, in the second bullet, I wrote, "Check for the existence of the custom
> Note: the `Path.Exists` method was added in .NET 7. It is not available in earlier versions of .NET.
# Page 362 - Joining, formatting, and other string members
In the table, `string.IsNullOrWhitespace` should be `string.IsNullOrWhiteSpace`.
# Page 412 - Compressing streams
> Thanks to Bob Molloy for raising this issue via email.