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...

Virtual vs Abstract Methods in C#: The Differences

A virtual method has a default implementation that derived classes may override; an abstract method has no implementation, and derived classes must provide one. That single difference drives everything else: abstract methods can only live in abstract classes, while...

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"...