home / developersection / category
We are working on multiprocessor of many years. However, many developers are creating single-threaded programs, they are not taking advantages of all the extra processing power. To remedy this, used Parallel Programming.
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.
This articles describes about general naming conventions in C#.
The Stack class represents a Last-in- First –Out (LIFO) stack of objects.
The SortedList offer more flexibility by allowing access to the variables either through the associated keys or through the indexes.
The ArrayList class can store heterogeneous collections of objects unlike array which store homogeneous collection of data.
Collection is an enhancement of array. If you want to create and manage a groups of related objects, use collection.
In C#, Generics are allows you to write a class or method that can work with any data type.
In this article we have discussing about multi-threading,its method and its priorities.
In C#, an event is a way for a class to provide notifications to clients of that class when something happens to an object.
If you want to the class behaves, similar to virtual array in C# ,using Indexer.