C# Minimal API
In this article, we will explore how to create a C# Minimal API project. If you want to skyrocket your C# career, check out our powerful… Read More »C# Minimal API
In this article, we will explore how to create a C# Minimal API project. If you want to skyrocket your C# career, check out our powerful… Read More »C# Minimal API
In this blog post, we will discuss how to implement fast and performant logging in ASP.NET. When developing an ASP.NET, logging is an essential aspect… Read More »ASP.NET Fast and Performant Logging
In this article, we will create a C# solution structure example that makes our application components more maintainable and testable. We’ll learn to keep the… Read More »C# Solution Structure
This article is an introduction to C# Stress Testing which walks you through a step-by-step, easy-to-follow example that helps you write your first stress test… Read More »C# Stress Testing
Intro When it comes to writing code, having a clear and consistent naming convention and coding standard can greatly improve the readability, maintainability, and overall… Read More »Naming Conventions and Coding Standards
Datatypes Int, Float, and Double (source code) This article shows the source code for one of our lessons from C# Masterclass. Moreover, here you can… Read More »Datatypes Int, Float and Double (source code)
Intro This article extends a lesson from our C# Masterclass about the difference between value and reference types. The difference between value and reference… Read More »Value vs Reference Types
C# Load Testing helps to ensure that applications can handle high traffic and heavy loads without crashing or slowing down. C# is a popular programming… Read More »C# Load Testing
In this article, we will implement an O(log N) Algorithm Example, and explore what O(log N) time complexity means. We will also discuss the advantages… Read More »O(log N) Algorithm Example
Avoiding nested loops to turn O(N²) into O(N) time complexity can significantly improve the performance of your programs. One of the most common mistakes made… Read More »Avoiding Nested Loops to Turn O(N²) into O(N)