Code Maze Author

Aditi S

Aditi is a developer with over 9 years of experience building applications using the Microsoft .NET ecosystem. She loves working on both the front-end and back-end of web applications. From designing user interfaces to building powerful APIs, she employs her experience with C#, .NET, ASP.NET Core, and Azure to create engaging experiences.
Also find me here:

MY ARTICLES:

How to Reverse a Number as an Integer and Not as a String in C#

In this article, we will dive into various ways to reverse a number using integer reversal. We will begin by exploring the iterative approach, which breaks down numbers into individual digits and rebuilds them in reverse order. Next, we will discuss recursion as an...

Differences Between a Virtual and an Abstract Method in C#

In this article, we will learn about the differences between a virtual and an abstract method. Object-oriented programming thrives on inheritance – leveraging common functionalities across classes for efficient and organized code. However, regarding methods, C# offers...

Tuple Aliases in C#

In this article, we will take an in-depth look at tuple aliases: what they are, how to use them, and the different rules that apply to them.  [sc name="github" url="https://github.com/CodeMazeBlog/CodeMazeGuides/tree/main/csharp-intermediate-topics/TupleAliasInCSharp"...