© 2023 Hashnode
#dotnet
In this article, we will explore how to encrypt/decrypt text using .NET and MD5 crypto provider. These methods can be used to secure critical values that are used by our ASP.NET web application. As you may know, .NET provides different ways…
Have you ever liked an application to the point that you want to view its source code? Well, I have been there. For .Net executable files and libraries such as DLL files, viewing the source code is a …
This article will focus on the most basic setup needed to create and use a Roslyn analyzer. Starting with an empty solution, we will go through the necessary configuration to develop and utilize a Ros…
(This post originally appeared on my blog) In C# 9.0 we received access to a great quality of life type called the record. You can read more about that from Microsoft here. Record types allowed us as …
In C#, there are two main data types used for variables: var and dynamic. Understanding the difference between these two types is important for writing effective and efficient C# code. The var data ty…
Previously On… In my previous post, I zoomed in on my assignment. The development is about the creation of a registration of a user, using Auth0 authentication flows, actions,... . My responsibility i…
C#.NET is a general-purpose programming language always on the mission to keep improving in every aspect, C# has improved its readability a lot with the period. Digit separation is part of readability…
What DI and IoC are Dependency Injection (DI) and Inversion of Control (IoC) are software design patterns that are used to decouple the components of an application and make it more maintainable, scal…
This video shows how you can include Swagger documentation from a referenced nuget package in your dotnet WebAPI application. https://www.youtube.com/watch?v=_SEc51RoUXA
Intro:- Calendars are used to display calendar data on the terminal. Spectre.Console is a .NET library which is used to create console applications. Spectre.Console is rendering the calendar on the te…