tag

home / developersection / tag

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....

UNSAFE CODE in C#
c# 12-Feb-2011
UNSAFE CODE in C#

The C# language has omitted pointers as a data type. C#instead provides references and the ability to create objects that are managedby a garbage coll

How to use the GetType method?
c# 09-Feb-2011
How to use the GetType method?

GetType is the basis for usingreflection in .NET. It returns a Type object, describing the object it was calledon. It can then be used to extract type