Skip to content
C Sharpens
  • Home
  • About Us
  • Contact Us
  • Learn C# Online
  • Privacy Policy

How to use Windows Registry in C#

January 3, 2016 by Sajjad Arif Gul
This article is about using Windows Registry functions in C#.Net application. Today I learned some basic functions of registry in Visual Programming Lab. In this example we will learn how to store a value in registry. This example will save the current Height & Width of windows form at Form1_FormClosing event.

Read more

Categories C#, Projects, Source Codes Tags How To, Tricks

Exception Handling in C#

December 28, 2015 by Sajjad Arif Gul

Error Handling has always been crucial for an application in a number of ways. It may affect the execution state of the application, or expose sensitive information to a user.If the error handling is not strong,it may aid the attacker, as the errors returned may assist them in constructing correct attack factors.

Read more

Categories Articles, C#, Source Codes Tags How To, Tricks 2 Comments

How to Create & Use DLL in C# Projects

December 13, 2015 by Sajjad Arif Gul
In this week I learned how to use dll files in any program. dll stands for Dynamic Link Library. The main use of the dll files is when we need some functions of other program into our project.

Read more

Categories C#, Source Codes Tags How To, Tricks

Binary Search using Recursion in C#

December 3, 2015 by Sajjad Arif Gul
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.

Read more

Categories C#, Source Codes Tags Console Application, Solutions 4 Comments

Adjacency List Using Linked List in C#

November 27, 2015 by Sajjad Arif Gul
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.

Read more

Categories C#, Source Codes Tags Console Application, Solutions

Creating Dynamic Directed and Undirected Adjacency Matrix in C#

November 20, 2015 by Sajjad Arif Gul
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.

Read more

Categories C#, Source Codes Tags Console Application, Solutions

Binary Tree with Linked List in C# Example

November 9, 2015 by Sajjad Arif Gul

This simple program demonstrate Binary Tree with Linked List. It uses Linked List for Binary Tree Implementation. Source Code Output :

Categories C#, Source Codes Tags Console Application, Solutions

Implementing Binary Tree in C# using Arrays

November 2, 2015 by Sajjad Arif Gul
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.

Read more

Categories C#, Source Codes Tags Console Application, Solutions 1 Comment

Create Doubly Linked List from Scratch in C# without using Builtin class

October 26, 2015 by Sajjad Arif Gul
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#.

Read more

Categories C#, Source Codes Tags Console Application, Solutions

Create Linked List from Scratch in C# without using Builtin class

October 16, 2015 by Sajjad Arif Gul
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#.

Read more

Categories C#, Source Codes Tags Console Application, Solutions
Post navigation
Older posts
Newer posts
← Previous Page1 … Page3 Page4 Page5 … Page7 Next →
© 2025 C Sharpens • Built with GeneratePress