BasedBee
❔ What is better book for c# mastery? "Pro C# 9 with .NET 5" or "C# 9 and .NET 5"?
Hey I want to spend some money on nice paperback editions of programming books that I can use to draw knowledge for the upcoming years and become a better programmer.
I am wondering if I should go for https://www.amazon.com/Pro-NET-Foundational-Principles-Programming/dp/1484269381 or https://www.amazon.com/NET-Cross-Platform-Development-intelligent-Framework/dp/180056810X
Or some other book if you want to recommend one
So far I am liking the PRO C#9 one more because it jumps into explaining how the main method works which for me is such intriguing thing to fully explore where the other book goes over standard programming principles like declaration of variables and objects first, which I could still go over one more time for the sake of mastery but it is not as fun.
Thank you for any advice
7 replies
❔ How to make Console.ReadLine() able to read characters such as ě?
Using visual studio, I am facing a problem where Console ReadLine converts characters such as ě or š into e and s and I dont know how to fix it
I have tried
Console.OutputEncoding = System.Text.Encoding.UTF8;
Console.InputEncoding = System.Text.Encoding.UTF8;
without success
4 replies