category

home / developersection / category

Multithreading in C#
c# 14-May-2013
Multithreading in C#

In this blog, I’m trying to explain the concept of multithreading in c# Multithreading is the ability of an operating system to concurrently run prog

Static Keyword in C#
c# 14-May-2013
Static Keyword in C#

In this blog, I’m trying to explain the concept of static keyword in C#. A class in C sharp declared with static keyword is a C# static class. The st

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