
Application : Full Quran Recitation by Idris Abkar
Sheikh Idris Abkar ( الشيخ ادريس أبكر ) are known for their recitation of Koran in beautiful voice. His voice is so emotional that many listeners feel it in their hearts. A lot of people search on Google for their complete recitation of Quran but until now there is no such website where you can find all of his recitation. So I decided to develop an application where all of his recitation can be merge & will be easy for people to listen to him at one single place. (more…)

Webcam in C# - How to use webcam in C# Projects
One of my friend have recently been asking me for a C# project to control webcam to capture video & photos. Also if you can capture screenshots or screen video from this application. So I come up with an easy solution from him. I work on this c sharp tutorial. It is in Visual Studio 2010. I've used an image & video processing open source library Aforge.net. (more…)

Copy or Paste Text to Clipboard in C#
This C# tutorial is explaining about how to Paste text or data from Clipboard & How to copy text or data to Clipboard. You can also check the active data or text on clipboard in this Csharp example program. Here is the source code with explanation of it. (more…)

Binary Search using Recursion in C#
Recursive Binary Search implementations using Binary Tree in C#. This is a Divide-and-Conquer search algorithm that works on a sorted array. Demonstrate Binary search using Recursion in Binary Tree. (more…)

Adjacency List Using Linked List in C#
This program will let you through the source code for how to create Adjacency List using LinkedList in C#. It Uses Node Class, Linked List Class, Graph Class. (more…)

Creating Dynamic Directed and Undirected Adjacency Matrix in C#
This program will let you through the source code for how to create dynamic Matrices using Arrays in C#. Adjacency Matrix of Any number of rows & columns can be with any weighted number can be created through this console application. (more…)

Binary Tree with Linked List in C# Example
This simple program demonstrate Binary Tree with Linked List. It uses Linked List for…

Implementing Binary Tree in C# using Arrays
Balanced Binary Search Trees (BST) is nothing new. A binary tree is a special kind of tree, one that limits each node to no more than two children. A simple Binary Search Tree written in C# that can be used to store and retrieve large amounts of data quickly. This tutorial gives an introduction to Binary Search Trees. (more…)

Create Doubly Linked List from Scratch in C# without using Builtin class
I have coded doubly Linked List from scratch without using built in List Class. Doubly Linked List inserts and removes elements fast. The following code example demonstrates many features of the doubly Linked List. let's see how we go about implementing a Doubly Linked List in C#. (more…)

Create Linked List from Scratch in C# without using Builtin class
I have code Linked List from scratch without using built in List Class. Linked-List inserts and removes elements fast. The following code example demonstrates many features of the Linked List. let's see how we go about implementing a Simple Linked List in C#. (more…)

String Processing Algorithm in C# from Scratch with example
This Program is the implementation of Finding Length of string, Finding Substring in String,…

Implement Quicksort Algorithm from Scratch in C#
C#. Quicksort is a very elegant general purpose sorting algorithm. Quicksort is a divide and conquer sorting algorithm. This example uses the quicksort algorithm to sort an array of string elements. this is tutorial on how to write a quick sorting Algorithm in C# Using Visual Studio. (more…)

Check if Parentheses are Balance in C#
Windows form application program source code for checking balance of parentheses. Checking string has balanced parentheses. Function to match parenthesis '(' and ')' . Check Parentheses using stack. Check for balanced parentheses in an expression. (more…)