tag

home / developersection / tag

Dot Net Framework
.net 16-Sep-2010
Dot Net Framework

The Microsoft .net framework is a complete software package that can be installed on the computer running on the Microsoft windows operating system. The component that make the .net platform are collectively called .net framewor

OOP’s Concept
.net 09-Sep-2010
OOP’s Concept

“Polymorphism means one name multiple forms”. Using this feature we can make more than one method using the same name. Polymorphism can be achieved in two ways method overloading and method overriding.

Namespace in dot Net
.net 27-Jul-2010
Namespace in dot Net

Namespaces are program elements designed to help us organize our programs. They also provide assistance in avoiding name clashes between two sets of code.

Namespace in .net
.net 27-Jul-2010
Namespace in .net

A namespace is a method of organizing a group of assemblies, classes, or types. A namespace acts as a container, like a folder, for classes organized into groups usually based on functionality.

Just In Time Compiler
.net 27-Jul-2010
Just In Time Compiler

The .Net languages use its corresponding runtime to run the application on different Operating Systems. During the code execution time, the Managed Code compiled only when it is needed, that is it converts the appropriate instructions to the native c

Dataset
.net 27-Jul-2010
Dataset

A Dataset is an in-memory data store that can hold numerous tables. Datasets only hold data and do not interact with a data source. It is the SqlDataAdapter that manages connections with the data source and gives us disconnected database behavior.

Connection String using App.config
.net 27-Jul-2010
Connection String using App.config

I’m going to demonstrate how to get connection string from App.config in C#.Net.ExampleApp.configxmlversion1.0encodingutf-8 configuration conne

Access Modifiers in .Net
.net 27-Jul-2010
Access Modifiers in .Net

Access Modifiers describes the scope of an object.C# has five Access Modifiers.    Public    Private    Protected    Internal    Protected internal P

Array
.net 26-Jul-2010
Array

An array is a series of elements of the same type placed in contiguous memory locations that can be individually referenced by adding an index to a unique identifier. For example, we can store 5 values of type int in an array without having to declar

Common Language Runtime
.net 25-Jul-2010
Common Language Runtime

The Common Language Runtime (CLR) is an Execution Environment. It works as a layer between Operating Systems and the applications written in .Net language.

ADO.Net
.net 25-Jul-2010
ADO.Net

ADO.NET is a data access technology from Microsoft .Net Framework, which provides communication between relational and non-relational systems through a common set of components.

Common Intermediate Language
.net 24-Jul-2010
Common Intermediate Language

CIL (Common Intermediate Language) is a bytecode and the language of the .NET platform into which compiled source code of high level language is written. Its operations are based on a stack and it is executed by a virtual machine.