Latest Posts On Code Maze

Code Maze Weekly #147

Code Maze Weekly #147

Issue 147# of the Code Maze weekly. Check out what's new this week and enjoy the read. .NET and C# Top Picks .NET 7 is Available Today [devblogs.microsoft.com] That time of the year has come. Of course, we're talking about .NET 7 release...

Concurrent Collections in C#

Concurrent Collections in C#

Concurrent Collections in C# are a set of collections designed for synchronized multi-thread access. We can find concurrent collections under the System.Collections.Concurrent namespace. Nowadays, where it is getting increasingly important and accessible to work in a...

HashSet in C#

HashSet in C#

In this article, we are going to take a look at the HashSet class in C#. We will discuss how to use it and its key features. Also, we are going to see some examples of how to use it in practice. Finally, we'll compare it to other data structures available in C#. Compact but packed with information article about creating ASP.NET Core Web API applications by...

Dictionary vs Hashtable in C#

Dictionary vs Hashtable in C#

In this article, we are going to compare Dictionary and Hashtable in C#. We will start with a brief introduction to both data structures and then proceed to the comparison. If you want to learn about the three different ways to...

Common C# Programming Mistakes

Common C# Programming Mistakes

In this article, we are going to look at some common C# programming mistakes. We are pretty sure that there are a lot more mistakes that developers make while writing their projects, but here, we will try to summarize the ones we often noticed while working with other...

Localization in ASP.NET Core

Localization in ASP.NET Core

Making websites multi-lingual allows users from around the globe to use our applications in their native language. In this article, we are going to see how ASP.NET Core provides us with the ability to enable localization to support different languages and cultures. ...

Make The First Letter of a String Upper Case in C#

Make The First Letter of a String Upper Case in C#

In this article, we're going to take a look at how to make the first letter of a string upper case in C#. We'll see some different approaches and investigate their performance characteristics. By the end of this article, we should have a good understanding of which...