In this example, you will learn to check whether an integer entered by the user is an Armstrong...
Category - General
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...
Using Thread Pool for Multi-Threading application in C#
Thread pool is basically collection of threads which can be used for preforming task in background...
Create RSS feed programmatically from data in C#
I haven’t used any built in application or framework to development a custom web site. All the code...
Add attacments while sending email in .NET
You can send email from a .net application using System.Net.Mail.MailMessage namespace. It is very...