Primary Constructors in C# 12
With c# 12 (.Net 8), we finally get primary constructors for classes and structs. I’ve wanted primary constructors since I started…
Read More
With c# 12 (.Net 8), we finally get primary constructors for classes and structs. I’ve wanted primary constructors since I started…
Read More
Middleware components in an ASP.NET Core application play a crucial role in handling HTTP requests and responses. Their positioning in your…
Read More
Reliable and efficient monitoring is crucial for managing the health of applications. Especially in a microservices architecture, you want to know…
Read More
aka things that sound alike Levenshtein distance and Metaphone 3 are two different algorithms primarily used in the context of text…
Read More
I asked ChatGPT4 what a DDD is in c#. It came back with a decent answer. In Domain-Driven Design (DDD)…
Read More
I often try to see the delta between two lists to see what needs to be added or deleted. Microsoft finally…
Read More
When writing a windows service using c# (or vb.net), you can install the service locally using?installutil.exe. ?You can simply just install…
Read More
To “turn off” the trusted certificate check for self-assigned certificates, just add this to the web.config
Read More
There is a need, at times, to prevent the user from clicking a button?multiple?times. ?Since ASP.Net already wraps something into the…
Read More