Blazor Deep Dives C# Blackjack in Blazor Part 1 - Rules and Modeling the Game Let's practice our modeling skills by breaking down the parts of Blackjack into definable, usable components. by Matthew Jones
C# in Simple Terms Deep Dives C# C# In Simple Terms - Iterators We can iterate over our custom collection by implementing an iterator on them! It makes using foreach so simple! by Matthew Jones
C# in Simple Terms Deep Dives C# C# in Simple Terms - Indexers Let's build indexers so our C# classes can be accessed like arrays! by Matthew Jones
C# in Simple Terms Deep Dives C# C# in Simple Terms - Dates and Times Learn all about DateTime, TimeSpan, and TimeZoneInfo! by Matthew Jones
C# in Simple Terms Deep Dives C# C# In Simple Terms - String Manipulation and Cultures Let's see how to manipulate, format, split, compare, and concatenate strings. Plus, we'll learn what Cultures are and how to use them! by Matthew Jones
C# in Simple Terms Deep Dives C# C# In Simple Terms - Expressions, Lambdas, and Delegates Let's discuss some abstract concepts in C#. Plus: interpolated strings! by Matthew Jones
C# in Simple Terms Deep Dives C# C# in Simple Terms - Attributes and Reflection Let's learn how to store and retrieve metadata using attributes and reflection. by Matthew Jones
C# in Simple Terms Deep Dives C# C# in Simple Terms - Tuples and Anonymous Types Two different ways to group values without needing an entire class. by Matthew Jones