Category
.NET

.NET
GPT-3 Takes on a C# Interview: Can AI Ace the Coding Questions?
Can artificial intelligence pass a C# coding interview? That’s the question many are asking as GPT-3, the latest AI technology, is put to the test. GPT-3 is an advanced AI system that has been trained on millions of data points, and can generate human-like natural language responses. But can it answer complex coding questions? To […]

.NET
Senior C# Developer Shows How To Master Your C# Level
What if I told you that 5 easy tips from a senior C# developer can make you an better coder? Would you believe me? Most people won’t, because we tend to assume that skill and experience are innate traits that only the most talented developers are born with. While that may be partially true, when it comes […]

.NET
.NET Conf 2022 in a Nutshell🥜 (Key Highlights to Know)
If you’re like me and didn’t have the time to follow the .NET Conf 2022 , fear not! Microsoft has teamed up with various venues across the country to host .NET Conf Live Stream events! In this article, I am going to give you the summary information (of the most important parts) that you need to know. At […]

.NET
Ref vs Out in C#: Differences + Tips + Examples
If you’ve ever written code in C#, chances are you have come across the ref and out keywords, but what exactly do they mean? Both of these keywords are used to pass data from one function or method to another. While their purposes are similar, there are several key differences between the two that you […]

.NET
.NET 7 Release Candidate 2 Is Here — Here’s What’s New!
In case you haven’t heard, the .NET 7 Release Candidate 2 (RC2) was just released by Microsoft, giving us a sneak peek of some of the new additions that will be available in the next major version of the .NET Framework. Here are the new .NET 7 Release Candidate News! C# 11 This second Release Candidate […]

.NET
Discover .NET 7 (RC1) New Features – Release Candidate 1
Yes, you are reading correctly. The first Release Candidate of the two that are going to be released has just been released. For those who wonder what Release Candidate (RC) means, it is the version that has official support from Microsoft for those applications that are in production. As Microsoft has told us, this is […]

.NET
Get Up To Date with the Latest Features of C# 11
Vacations are over for many people! Although it seems that Microsoft does not know what that is and they have just released one of the last official previews of C# 11. The development of the eleventh version of its programming language is in the final stages and Microsoft has decided to step on the gas […]

.NET
.NET 7: Microsoft Reveals New ASP.NET Core Features
Microsoft has revealed more new features that will be included in its next version of ASP.NET Core for .NET 7. This new preview includes API enhancements, cookie consent customization, support for shadow copying and more. Let’s take a look at what’s new in ASP.NET Core in .NET 7! Infer service-sourced API controller action parameters Previously it was […]

.NET
Sticky Scroll: Never Get Lost in Visual Studio Code Again!
Finally came what many of us were not waiting for but wishing for! (like the song that nobody expected but everybody needed it). Who is not tired of having hundreds of lines of code and not knowing what class or interface you are in? Scroll up, scroll down and keep getting lost in the code […]

.NET
Discover the New ASP.NET Core Features in .NET 7!
It is no news that Microsoft is working very hard on improving and bringing new features to the .NET framework or to its C# programming language. This time Microsoft is targeting web development and is focusing on ASP.NET Core, which will apparently come hand in hand with the .NET 7 version. Some time ago Microsoft released Preview […]

.NET
Single Responsibility Principle in C# with Examples
Single-Responsibility Principle, the first principle and meaning of the letter S in the SOLID principles. The famous and well-known SOLID design principles of the programming world, which developer does not know them? What would we do without Uncle Bob (Robert C. Martin) teaching them to us? What would the world of object-oriented programming be like […]

.NET
Microsoft Releases New .NET Rate Limiter in .NET 7 - And It’s Amazing!
It’s official — Microsoft has released the new .NET Rate Limiter in .NET 7! It’s amazing, and it will avoid any problems you have had with rate limiting in the past! Check out this blog post to learn more about it! As far as performance goes, this new .NET rate limiter has been designed to handle thousands […]

.NET
5 C# Tips from a Senior Developer to Help You Program Better
Senior developers tend to pick up many tricks and workarounds over the years, but most of them never make it into articles, blog posts or books. If you’re just starting out as a C# developer, or if you’re looking to improve your skills, here are five tips from some of a Senior Developer on how […]

.NET
The Best .NET Decompiler Comparison Guide ✅ (Free and Paid)
Decompiling .NET assemblies is an invaluable skill for any software developer or security engineer who wants to reverse engineer or disassemble someone else’s code, and there are several tools available to help you do this, each with its own unique features and quirks. This guide will compare the features of the most popular decompilers to […]

.NET
These 5 C# Guidelines (Revealed by a Senior Developer) will Change your Coding Style
Learning how to code can be challenging, but following the advice of more experienced developers can help you master the fundamentals of coding quickly and easily. These five C# guidelines, revealed by a senior developer, will change the way you write your code; this article will show you how to start coding like a pro […]

.NET
5 Bad Practices That Can Make Your C# Code Messy — And How to Avoid Them
How do you know if you’re following good practices when programming in C#? And how can you avoid the bad practices that can make your code messy and harder to manage? In this article, we’ll look at five common bad practices, and explain how to avoid them by using some better alternatives. Stop check null […]

.NET
Best C# Books (Beginner, Intermediate, Advanced) to Learn C# 📚
How do you learn C#? Do you want to start learning C#? Do you want to improve your skills or expand your knowledge to senior developer? There are tons of books out there to teach you the ins and outs of C#, but how do you know which ones are right for you? Here you […]

.NET
.NET MAUI (RC3) New Features – Release Candidate 3
Microsoft is not letting time pass and continues to keep the focus on .NET MAUI, its .NET platform focused on the creation of cross-platform applications. This time it officially presents the launch of the third Release Candidate of .NET MAUI adding even more new features. I remind you that Microsoft is already giving official support for these Release […]

.NET
.NET 5 has reached End of Life
In recent years, especially with the pandemic, everything has been moving very fast. The release of .NET 5 by Microsoft was only a year and a half ago (specifically on November 10, 2020) and we have to say goodbye to it. Sadly, Microsoft’s deadline for developers to migrate to .NET 6 is ending and support for .NET 5 […]

.NET
C# Array vs List: Differences & Performance
When it comes to storing and manipulating data in C#, there are two main data structures you can use: arrays and lists. Both of these structures have their own unique benefits and drawbacks, and understanding when to use one over the other is key to writing efficient and effective code. In this article, we will […]