Code Maze Author

Aneta Muslić

Aneta is a software developer with five years of experience in .NET backend and full-stack development and an interest in DevOps. Her primary focus in tech involves working with cloud-hosted web solutions and exploring diverse databases. Outside of work, she enjoys participating in pub quizzes and engaging in various outdoor activities.
Also find me here:

MY ARTICLES:

How to Test gRPC Services in ASP.NET Core

gRPC is a popular way to create fast and scalable API's in the .NET world. In this article, we explore how to test gRPC Services in .NET applications, and set up both unit and integration tests to ensure the reliability and performance of gRPC services. [sc...

Read a Text File Without Specifying the Full Path in C#

In .NET applications, reading text files is essential for tasks like loading configurations, processing data, and parsing logs. In this article, we look at the file's relative and absolute paths and set up a new project to read a text file using its relative path. [sc...

Parallel.ForEachAsync() and Task.Run() With When.All in C#

Parallel programming is a common and broad concept in the .NET world. In this article, we compare two well-known methods we use to achieve it when running a repetitive asynchronous task. We take a look at how they behave under the hood and compare the pros and cons of...

How to Set an Authenticator for a New RestClient in RestSharp

In this article, we will review the different authenticator types in RestSharp, available via NuGet. First, we will briefly look through all of them and later focus on setting up a request using the HTTP basic authenticator. Then we will take a look at a common error...