category

home / developersection / category

Enumeration in C#
c# 01-Jan-2011
Enumeration in C#

The enum keyword is used to declare an enumeration, a distinct type consisting of a set of named constants called the enumerator list. It is user defi

Static keyword in C#
c# 01-Jan-2011
Static keyword in C#

The static keyword in C# is refering to something in the class, or the class itself, that is shared amongst all instances of the class.Static:A C#clas

Lambda Expression in C#
c# 01-Jan-2011
Lambda Expression in C#

A Lambda expression is nothing but an Anonymous Function, can contain expressions and statements. Lambdaexpressions can be used mostly to create deleg

Struct in C#.Net
c# 30-Dec-2010
Struct in C#.Net

Astructtype is a value type thatis typically used to encapsulate small groups of related variables, suchas details of student. Example:Create struct 

Interface in C#
c# 27-Dec-2010
Interface in C#

An interfacelooks like a class, but has no implementation. The only thing it contains isdefinitions of events, indexers, methods and/or properties.The

Routing Concept in .NET
c# 22-Dec-2010
Routing Concept in .NET

The routing engine can decouple the URL in an incoming HTTP request from the physical Web Form that responds to the request, allowing you to build fri

Partial Class in .NET
c# 21-Dec-2010
Partial Class in .NET

In the earlier versions of Visual Studio .Net 2005, while you create an ASP.Net application, you might have seen that a single class has to be in a si

Difference Between Close() and Dispose() Method.
c# 18-Dec-2010
Difference Between Close() and Dispose() Method.

The basic difference between Close() and Dispose() is, when a Close() method is called, connection will be temporarily closed and can be opened once a

Difference  between thread and process?
c# 11-Dec-2010
Difference between thread and process?

A process is an executing instance of an application.A thread is a path of execution within a process. Process can contain multiple threads. Thre

DATA Types
c# 02-Dec-2010
DATA Types

Every Variable in C++ can store a value. However, the type of value which the variable can store has to be specified by the programmer. C++ supports t

Delete All Temporary Internet Files of IE
c# 20-Nov-2010
Delete All Temporary Internet Files of IE

Here I’m going to demonstrate how to delete all Temporary Internet Files of Internet Explorer through C#.Net.Example private void btnDelete_Click(obje

Encode and Decode in .Net
c# 12-Nov-2010
Encode and Decode in .Net

Html Encode method encodes a particular string to be displayed in a browser. It is important to encode strings prior it’s rendering in the page, main