In daily life, especially for those dealing with file management, organizing file names is a common...
Category - General
Pseudocode to Find the Larger Number Between two numbers
To find the larger number between two numbers in pseudocode, you can use the following steps:...
How to add Linq to sql dataclasses or Other Components in Visual studio 2017 – 2019
In this post, i’ll show you How to add Linq to sql dataclasses or Other Components in Visual...
Check Armstrong Number in C# (n digit)
In this example, you will learn to check whether an integer entered by the user is an Armstrong...
How to extract numbers from a string in C#
In this tutorial we will see how to extract numbers from a string using Regex.split in C #...
C# Anonymous Methods with Examples
An anonymous method is an inline method and it does not have a name, i.e, it has body only. We can...
Reverse a Number in C++
We can reverse a number in C++ using loop and arithmetic operators. In this program, we are getting...
How to Get Data from Flat Txt File in C#
The manipulation of text files can be very useful in the realization of .NET applications whether...
C# using statement
Many programmers have the problem that they do not know when and how to release an object. When is...
C# Get Domain Name from URL
You can determine the host name of a Uri object with Uri.Host. That would be the host at If you...