tag

home / developersection / tag

GAC in .NET
.net 09-Jul-2012
GAC in .NET

Each computer where the common language runtime is installed has a machine-wide code cache called the global assembly cache. The global assembly cache stores .net assemblies specifically designated to be shared by several applications

What is CLR in .net framework
.net 09-Jul-2012
What is CLR in .net framework

The most important component of .NET Framework is CLR (Common Language Runtime).

Introduction to inheritance
c# 06-Jun-2012
Introduction to inheritance

Inheritance is the ability to create a class from another class, the "parent" class, extending the functionality and state of the parent in the derived, or "child" class.

Custom Message Box in C#.NET
c# 08-Feb-2012
Custom Message Box in C#.NET

Hi, in this article I am going to explain how to create custom message box in c#.net. As we know that by using MessageBox class to display message box but

Microsoft Distributed Technology
.net 12-Aug-2011
Microsoft Distributed Technology

Here in this article I will introduce you some of common technologies introduced by Microsoft. Here I will give you a brief introduction upon COM component, DCOM, Enterprise Services, .

Array in C#.NET
.net 21-Jan-2011
Array in C#.NET

When we want to store values of same data type then we create number of variables of same data type which reduce the performance of application as well as efficiency.

Single Dimension Array In C#.NET
.net 21-Jan-2011
Single Dimension Array In C#.NET

Whenever you want to store values in a single row then we follow the concept of single dimension array. In a single dimension array we need only one index to access the member of array.

Multidimensional Array In C#.NET
.net 21-Jan-2011
Multidimensional Array In C#.NET

When we want to store the information in the format of rows and columns then we use the concept of multidimensional array. Best example of multidimensional array is Microsoft Excel in which all the information is stored in the format of rows and colu

Jagged Array In C#.NET
.net 21-Jan-2011
Jagged Array In C#.NET

Whenever we want to store the information in the hierarchical format or parent child relationship then we use the concept of Jagged Array. Jagged array is defined as array of array. When we used concept of Jagged array then firstly we create parents

Collection and Generic Collection Classes in C# .NET
.net 01-Jan-2011
Collection and Generic Collection Classes in C# .NET

Collection classes are used for data storage and manipulate (sort, insert, remove etc) the data. Most of the collection classes implement the same in

Multithreading in c#
.net 29-Sep-2010
Multithreading in c#

Multithreading is a feature provided by the operating system that enables your application to have more than on execution path at the same time. We us

Delegates
.net 19-Sep-2010
Delegates

Delegates are references to methods. So we have used to references to object, e.g. Employee emp = new Employee ();Here emp is a reference to an objec