Practicing and exploring
Test your knowledge and understanding by answering some questions, getting some hands-on practice, and exploring this chapter's topics with deeper research.
Exercise 3.1 – Online material
Online material can be extra content written by me for this book, or it can be references to content created by Microsoft or third parties.
Returning result types versus throwing exceptions
In .NET programming, handling errors often revolves around two primary mechanisms: exceptions and result types. Learn more about result types by reading the following online section:
https://github.com/markjprice/cs13net9/blob/main/docs/ch03-result-types.md
C# 101 notebooks
Use the links to notebooks and videos at the following link to see interactive examples of C# using Polyglot Notebooks:
Exercise 3.2 – Practice exercises
Practice exercises go deeper into the topics for this chapter.
Loops and overflow
What will...