The .NET News Daily Issue #92

Your Daily Dose of .NET Insights, Tools, and Trends

Welcome to Wednesday, the quirky middle child of the workweek, where your .NET skills are about to get a boost more thrilling than a '90s mixtape rediscovery. Today, we’ve packed a delightful punch of articles that'll turn your coding challenges into happy little victories, like Bob Ross with a curly bracket. So, snag that coffee and prepare to indulge your inner code artisan with a refreshing midweek palette cleanser.

Today's Articles

Advanced Logging in .NET Core: A Comprehensive Guide for Senior Developers
Advanced Logging in .NET Core: A Comprehensive Guide for Senior Developers

Logging is an essential aspect of software development, particularly in web applications built with .NET Core. It serves multiple purposes… Continue reading on Medium »

 
Understanding Collections in C#
Understanding Collections in C#

In C#, collections are used to store and manage groups of objects. They are very helpful when you need to work with multiple items in your… Continue reading on Medium »

 
XML Demystified in .NET C#: A Practical Guide
XML Demystified in .NET C#: A Practical Guide

Unlock the power of XML in .NET with C# Continue reading on Medium »

 
Now FastReport supports .NET 9: what’s new?
Now FastReport supports .NET 9: what’s new?

In software development, timely adaptation of tools to new platform versions is crucial for developers' convenience and efficiency… Continue reading on Medium »

 
Using Primary Constructors with Classes and Structs in C# 12 / .NET 8
Using Primary Constructors with Classes and Structs in C# 12 / .NET 8

As part of C# 12, we got a new feature called primary constructors. Let's see how they work and what we can do with them.

 
Connection String in ASP.NET Core MVC .NET 8
Connection String in ASP.NET Core MVC .NET 8

Learn how to manage and use connection strings in applications, explore AppSettings.json, environment variables, and static classes, and understand their implementation with sample code for seamless d...

 
Monitor HTTP redirects to reduce unexpected latency
Monitor HTTP redirects to reduce unexpected latency

This post details how redirection handling impacts dotnet-http tool implementation but also possibly your requests latency. Continue reading on Medium »

 
Exploring Minimal APIs in .NET: Simplicity Meets Power
Exploring Minimal APIs in .NET: Simplicity Meets Power

Why Minimal APIs Are the Go-To Solution for Modern .NET Web Development Continue reading on Medium »

 
Converting to a derived class from the future: How to cast from a base class to an incomplete derived class?
 
C# Basics for Beginners
C# Basics for Beginners

C# is a versatile, modern programming language used for building a wide range of applications, from desktop software to web and mobile… Continue reading on C# World »

 
Exploring Caching Strategies in .NET to Enhance Application Performance
Exploring Caching Strategies in .NET to Enhance Application Performance

In the realm of software development, particularly with .NET applications, caching plays a crucial role in optimizing performance. By… Continue reading on Stackademic »

 
Azure Functions: Your Secret Weapon for Scalable Cloud Solutions!
Azure Functions: Your Secret Weapon for Scalable Cloud Solutions!

Recently, I got the chance to work on Azure Functions, a powerful serverless computing service provided by Microsoft Azure. Continue reading on Medium »

 
Mutable vs. Immutable: Advanced C# Strategy by Senior Developers
Mutable vs. Immutable: Advanced C# Strategy by Senior Developers

In traditional C# programming, developers often work with mutable classes, where object states can be changed after instantiation. This… Continue reading on Medium »