category

home / developersection / category

Generic class in c#.
c# 12-May-2011
Generic class in c#.

In this article I will describe you that what is generic class and how we can use concept of generic class in c#. One thing more that generic class is also known as template class and parametrized class.

Dispaying user account info in c#.
c# 10-May-2011
Dispaying user account info in c#.

In this blog I will tell you that how to retrieve basic user account information on computer by using WMI classes. In this blog we see that how to ret

Gradient Background in C#.
c# 10-May-2011
Gradient Background in C#.

In this blog I will describe you that how to create a gradient background color in c#. For creating gradient background color we used System.Drawing.D

Dialog Box in .Net
c# 07-May-2011
Dialog Box in .Net

A dialog box is a secondary window that allows users to perform a command and provides users with information or progress feedback.Dialog boxes have t

Static Class in C#.
c# 05-May-2011
Static Class in C#.

Such type of class which is marked by static keyword is known as static class. All the members of static class must be static. We cannot declare non-s

Property in c#
c# 05-May-2011
Property in c#

A property is a member that provides a flexible mechanism to read, write or compute the value of a private field. We can use concept of property when

Multicast Delegate in C#
c# 01-May-2011
Multicast Delegate in C#

Such type’s delegates which hold and invoke multiple methods are known as multicast delegates. But simple delegates invoke only one method. Multicast

Retriving network device information in c#.
c# 28-Apr-2011
Retriving network device information in c#.

In this blog I am demonstrating you that how to retrieve basic network device information such as network id, network name and description using c#.To

Getting Login User Status in C#.
c# 28-Apr-2011
Getting Login User Status in C#.

This is a small blog of Code Access and Security in c#. In this blog we try to know status of user or we can say how we can know that the user who is

Dynamic Binding in C#.
c# 28-Apr-2011
Dynamic Binding in C#.

Dynamic binding is a process to bind elements at runtime. It is also known as association of method at runtime not compile time. Dynamic binding in

Globalization in .NET
c# 12-Mar-2011
Globalization in .NET

Globalization refers to the process in which an application or software will be designed and developed so as to make it run across all cultures and region.

Base Class Initilization
c# 14-Feb-2011
Base Class Initilization

Base Class Initilization is a concept from which we can call method,properties and indexers of the class.We can also call the parent class methos and also initilize the value in the parameter of parent class construtor....