Pre-requisites: C#, ASP.NET C# (also known as C sharp) is an object-oriented programming language that is used to produce an array of applications for gaming,… Read More
Category Archives: C#
Fonts play a crucial role in the visual appearance of any application, and the right font can significantly enhance the user experience. You can do… Read More
The C# programming language documentation tag <inheritdoc/> states that a documentation comment must inherit documentation from a base class or implemented interface. Syntax <inheritdoc [cref="link-ref"]… Read More
Recursion is a function that calls itself. Or in other words, recursion is a process where a function calls itself repeatedly until some specified conditions… Read More
A class library file is a collection of classes and namespaces in C# without any entry point method like Main. Once we create a class… Read More
LINQ (Language Integrated Query) is a set of language and rich library features provided by C# for writing consistent and intuitive syntax for querying data… Read More
In this tutorial, we will be seeing how to install NuGet packages in C#. NuGet is the official package-manager for .NET. Packages are basically compiled… Read More
A group of technologies known as Language-Integrated Query (LINQ) is built on the direct integration of query functionality into the C# language. The query expression… Read More
A type-safe function pointer is a delegate. It means that the delegate contains a reference to a method or function, and that when we invoke… Read More
To keep data secure and protected it is necessary to keep the data encrypted. As we know that in C# and in other languages too… Read More
Linked List linear collection of objects called nodes that are stored in the memory at random addresses. The first node is a special node named… Read More
To illustrate User Authentication using C#, We will go through the Sign-Up and login functionality. Firstly the user needs to make an account (Sign UP)… Read More
UDP stands for User Datagram Protocol. It is a connectionless protocol. When you send data or message, you don’t know if it will get there,… Read More
IDisposable is an interface defined in the System namespace. It is used to release managed and unmanaged resources. Implementing IDisposable interface compels us to implement… Read More
At the point when the server program is run, it will demonstrate at which IP it is running and the port it is paying attention… Read More