Related Posts
C# 11.0: Generic Math, C# Operators and Static Abstract/Virtual Interface Members
In the previous blog posts you learned about different C# 11.0 features: Raw String Literals Generic Attributes In this blog post, let's look... read more
C# 11.0: Generic Attributes
In the previous blog post you learned about C# 11.0 raw string literals. In this blog post, you will learn about another... read more
C# 11.0: Raw String Literals
In November 2022, .NET 7.0 was released, and since then, you can use C# 11.0. In version 11.0, the C# language... read more
C# 10.0: Extended Property Patterns – Use the Dot Token to Access Nested Members
In the previous blog posts you learned about different C# 10.0 features: File-scoped namespaces Global using directives In this blog post, let's look... read more
C# 10.0: Global Using Directives – Make Important Namespaces Available in Your Whole Project
In the previous blog post you learned about C# 10.0 file-scoped namespaces. In this blog post you learn about another C# 10.0... read more
C# 10.0: File Scoped Namespaces – Get More Space For Your Code
C# 10.0 and .NET 6.0 will be released in November 2021. Time to look at the new language features with... read more
MvvmGen 1.1.0 and the New Special Edition: PURE CODE GENERATION – No Runtime Dependency For Your Project!
In the last blog post I introduced you to MvvmGen, the new MVVM library built with a strong focus on... read more
Introducing the brand-new MvvmGen Library – Writing ViewModels for your XAML Applications Has Never Been More Productive and Easier
In the nights of the past weeks, I built a brand-new MVVM library that you can use in your XAML-based... read more
Store Data of Your Blazor App in the Local Storage and in the Session Storage
To store local data, today's browsers support a local storage and a session storage. The difference between the two is... read more
Using Tuples in C# to Initialize Properties in the Constructor and to Deconstruct Your Object
Recently I was asked by a developer what this code block here actually is: public Friend(string firstName, string middleName, string lastName) ... read more
Leave a Reply