Encode and Decode URLs in ASP.NET Core C#

.NET CORE | How to Encode and Decode URLs in ASP.NET Core C#

What is URI Encoding It is the process of converting certain characters to a specific format to make them valid for use in a URI.…

Read More .NET CORE | How to Encode and Decode URLs in ASP.NET Core C#

WPF | Windows| Console Application | How to Call REST API in C#

In C#, HTTPClient Class provides a base class for sending HTTP requests and receiving HTTP responses from a URL. It is a supported asynchronous feature…

Read More WPF | Windows| Console Application | How to Call REST API in C#
Remove Duplicates from an Array in C# without using a built-in function

How to Remove Duplicates from an Array in C# without using a built-in function

To remove duplicates from an array without using built-in functions, create a custom function that iterates through the original array. This function will create a…

Read More How to Remove Duplicates from an Array in C# without using a built-in function

C# Enum | How to use Enum in C#

In C#, Enum is a value data type defined by a set of named constants. Enum is the short form of Enumeration. In this article,…

Read More C# Enum | How to use Enum in C#