There are lots of small tricks in .net which can be very useful if used wisely. In this post I want...
Category - C#
EasyTimer – JavaScript style setTimeout and setInterval in C#
I found JavaScript setTimeout and setInterval functions quite handy for timer like functionality...
C# Connect to an SQL database
If you’re looking for a way to connect to a database, I’d rather read this tutorial on...
Algorithm Tour of Hanoi in C#
This program demonstrate Tower of Hanoi in C#. Tower of Hanoi is a mathematical riddle algorithm...
How to Pass Data Between Two Forms in C#
INTRODUCTION This is my first mini tutorial, and it’s just a passing of variable between two...
How to Easily Retrieve Data from an XML File in C#
This tutorial explains some tips for recovering values contained in an XML file. The published code...
All you really need to know about arrays in C#
I propose today, a ticket oriented for beginners who presents the different uses of arrays in C#...
C# Read Text File to List
For various reasons, you may want to read a file line by line a file and save it to a List<>...
C# Read Text File Line by Line to End
The default with variables is that they only exist in RAM. Once your program is stopped, all your...
C# Get All Files in Directory and Subdirectories
Here is just a little tutorial to list all the files in a folder (and its subfolders). List all the...
C# Program to Add Two Numbers in Windows Form Application
In this example, I will show you how to add two numbers in Windows Form Application. Screenshot of...
Sort a Dictionary By Values in C#
This program will demonstrate the example of the sorting a given Dictionary by values in C# Code:...
Simple Calculator in ASP.Net with Source Code
In this article, we will create an example that performs the Addition, Subtraction, Multiplication...