tag

home / developersection / tag

Polymorphism in C#
c# 13-May-2013
Polymorphism in C#

In this blog, I’m trying to explain the concept of polymorphism with examples of method overloading and method overriding. Polymorphism is the fundam

Method Overriding in C#
c# 13-May-2013
Method Overriding in C#

In this blog, I’m trying to explain the concept of method overriding.Method overriding is the concept of polymorphism and also uses the inheritance. I

Method Overloading in C#
c# 13-May-2013
Method Overloading in C#

In this article, I’m trying to explain the concept of method overloading.Method overloading is the concept of polymorphism which means one name multip

Inheritance in C#
c# 13-May-2013
Inheritance in C#

In this article, I’m trying to explain the concept of inheritance. One of the most important concepts in object-oriented programming is inheritance.

Abstract Class in C#
c# 13-May-2013
Abstract Class in C#

In this article, I’m trying to explain the concept of abstract class. An Abstract class is an incomplete class or special class we can't instantiate.

Interface in C#
c# 10-May-2013
Interface in C#

An interface is not a class. It is an entity that is defined by the word Interface. An interface has no implementation; it only has the signature or i

Partial Class in C#
c# 10-May-2013
Partial Class in C#

In this blog, I’m trying to explain the concept of partial class in c# and how to implement it. A Partial class is one that can be split among multip

Encapsulation in C#
c# 10-May-2013
Encapsulation in C#

In this blog, I’m trying to explain the concept of encapsulation. Encapsulationis defined 'as the process of enclosing one or more items within a phy

Access Specifier in C#
c# 10-May-2013
Access Specifier in C#

In this blog, I’m explaining the access specifier in C#.Access specifier describes as the scope of accessibility of an Object and its members. All C#

Imperative and declarative programming
c# 25-Apr-2013
Imperative and declarative programming

In this blog I am trying to explain the imperative and declarative (functional) programming.Declarative (functional) programming:Declarative (function

Retrieving Multiple Result Sets
c# 15-Apr-2013
Retrieving Multiple Result Sets

Introduction  In this blog we will discuss how to retrieve multiple results sets using DataReader object.What is DataReader?1.    The DataReader is a

Main () and Command-Line Arguments in C# Programming.
c# 09-Apr-2013
Main () and Command-Line Arguments in C# Programming.

In this blog I am trying to explain the concept of Main() method and command line arguments using C# programming. The Main method is the entry point