tag

home / developersection / tag

Windows API
.net 12-May-2011
Windows API

The Windows API exposes the core set of functionality provided by the Windows operating system for use in applications. Primarily designed for C/C++ d

Assemblies in .NET
.net 12-Mar-2011
Assemblies in .NET

In simple words, an assembly is smallest deployable unit in .net framework. We can define an assembly is a compiled code library use for deployment, v

ASSEMBLIES in .NET
.net 12-Feb-2011
ASSEMBLIES in .NET

Assembly is a basic element ofpackaging in .NET. An assembly consists of IL code, metadata that describeswhat is in the assembly, and any other files

Common Type System (CTS)
.net 11-Feb-2011
Common Type System (CTS)

The Common Type System (CTS) defines how types are declared, used, and managed in the runtime. It is an important for Language Interoperability.The C

Global Assembly Cache
.net 08-Feb-2011
Global Assembly Cache

Global Assembly Cache or GAC is machine wide. Basically it is way to keep DLL s globally without worrying about conflicts.GAC or the Global Assembly C

DLL Hell in .Net
.net 08-Feb-2011
DLL Hell in .Net

"DLL Hell" refers to the set of problems caused when multiple applications attempt to share a common component like a dynamic link library (DLL) or a

Assembly in .Net
.net 08-Feb-2011
Assembly in .Net

An Assembly is a collection of single-file or multiple files.The .NET assembly is the standard for components developed with the Microsoft.NET. Dot NE

What is NameSpace?
.net 27-Jan-2011
What is NameSpace?

Namespace is a group of classes, structures, interfaces, enumerations, and delegates, organized in a logical hierarchy by function, that enable you to

Bug Life Cycle
.net 08-Jan-2011
Bug Life Cycle

Bug can be defined as the abnormal behavior of the software. No software exists without a bug. The elimination of bugs from the software depends upon

.NET 4.0 Features
.net 24-Dec-2010
.NET 4.0 Features

.Net 4.0 is latest technology and it provide Extra features then previous version. There are added new features in this section of .net as giveno   A

What is Serialization?
.net 11-Dec-2010
What is Serialization?

Serialization is the process of taking an object and converting it to a format in which it can be transported across a network or persisted to a storage location. The storage location could be as simple as using a file or a database.

What is an object?
.net 09-Dec-2010
What is an object?

Object is the instance of the class.whenyou create the object you can specify the properties of that object.each object has at least one attribute that makes it unique.