category

home / developersection / category

Multithreading with the BackgroundWorker Component in ASP .NET
c# 06-Jan-2016
Multithreading with the BackgroundWorker Component in ASP .NET

The BackgroundWorker class allows you to run an operation on a separate, dedicated thread when you want a responsive UI and you are facing long delays associated with such operations, the BackgroundWorker class provides a convenient solution.

General Naming Convention in C#
c# 04-Jan-2016
General Naming Convention in C#

This articles describes about general naming conventions in C#.

Stack Class in C#
c# 01-Jan-2016
Stack Class in C#

The Stack class represents a Last-in- First –Out (LIFO) stack of objects.

SortedList in C#
c# 01-Jan-2016
SortedList in C#

The SortedList offer more flexibility by allowing access to the variables either through the associated keys or through the indexes.

Hashtable Class in C#
c# 01-Jan-2016
Hashtable Class in C#

Hashtable optimizes lookups with the help of keys.

ArrayList Class in C#
c# 30-Dec-2015
ArrayList Class in C#

The ArrayList class can store heterogeneous collections of objects unlike array which store homogeneous collection of data.

Collection in C#
c# 23-Dec-2015
Collection in C#

Collection is an enhancement of array. If you want to create and manage a groups of related objects, use collection.

Using Generics in C#
c# 22-Dec-2015
Using Generics in C#

In C#, Generics are allows you to write a class or method that can work with any data type.

Multi-threading in C#
c# 22-Dec-2015
Multi-threading in C#

In this article we have discussing about multi-threading,its method and its priorities.

Delegate and Events in C#
c# 21-Dec-2015
Delegate and Events in C#

In C#, an event is a way for a class to provide notifications to clients of that class when something happens to an object.

Indexer in C#
c# 21-Dec-2015
Indexer in C#

If you want to the class behaves, similar to virtual array in C# ,using Indexer.

Delegates in C#
c# 19-Dec-2015
Delegates in C#

Delegates is referred to as a type safe function pointer in C#. Which holds the reference of method with a particular argument list and return type.