Happy Monday all — I’ve added some new .NET programming sources to our feed. Some of them don’t produce images, which makes it hard to auto-format the daily emails. So, my apologies if some of the mail isn’t as well formatted as we would all like. I clearly need a code formatter for newsletters 😉
Today’s Articles
Different Ways of Declaring an Object in C#
In this article, we’ll explore different ways to declare and initialize objects in C#. From using the new keyword to implicit typing and object initializers, you’ll learn how to create objects efficie…
|
|
|
UUID (GUID) vs ULID in C#
UUIDs are universal, standardized, but lengthy; ULIDs are sortable, compact, and ideal for time-based ordering. Continue reading on Medium »
|
|
|
Generics 101
Article discusses the need for Generic code when Type specific code creates redundancy. Continue reading on LearnInBytes »
|
|
|
Exploring Primary Constructors in C# 12 and .NET 8
With the release of .NET 8 and C# 12, developers have been introduced to several new features that enhance the development experience. One of the most exciting additions is the primary constructor for…
|
|
|
Understanding the JSON Web Token (JWT)
A small, URL-safe way to represent claims that need to be transferred between two parties is with JSON Web Tokens (JWT). The claims in a JWT can be digitally signed or integrity-protected with a Messa…
|
|
|
C# Articles
Decorator Pattern in C# Continue reading on SilentTech »
|
|
|
Leave a Reply