Replies: 1 comment 1 reply
-
You are right that new features of C# should be used in this book - and they are. I'm making an update to the updates.md file (see bd01501) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
The title of book is Professional C# 2021, Isn't it better to rewrite the codes according to the new features of C#? for example, Page 296 - CHAPTER 11 Tasks and asynchronous Programming, You wrote:
private readonly static Dictionary<string, string> names = new Dictionary<string, string>();
It can be
private readonly static Dictionary<string, string> names = new();
However, the codes in THIS file are in a new style but in the book, they are in the old style.
Beta Was this translation helpful? Give feedback.
All reactions