tag

home / developersection / tag

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

Unicode Character string datatypes
c# 09-Nov-2010
Unicode Character string datatypes

Unicode character string data types are used to store Unicode character strings. SQL Server 2005 supports the following Unicode character string data

Destructor in C#
c# 06-Nov-2010
Destructor in C#

A destructor is a function with the same name as the name of a class but starting with the character ~. A constructor gets called at birth whereas a d