Tag: C#

JSON Serialization and Deserialization in ASP.NET Core
This blog is going to explain how to serialize and deserialize the JSON(JavaScript Object Notation) in ASP.NET Core. Here I used System.Text.Json namespace to serialize and deserialize the JSON. Let...

Tips for writing clean code in C#
This post will help you speed up your C# code and provides many tricks that every professional developer must know. 1. Validating input "first" Look at the code snippet below...

Extract the value from the Frame Element [C#]
In this blog, we are going to learn how to extract the value of the element which is present inside a FRAME. A FRAMESET is a collection of FRAMES. The FRAME helps...