Friday, October 23, 2015

Difference between Response.Write and Response.WriteLine

Introduction: In this post we will discuss about the difference between Response.Write and Response.WriteLine in C#. These are the methods we used to show the output in console application. Both these methods come from class Console under namespace System. Behavior of both these are as same as except...

Tuesday, October 20, 2015

Inheritance in OOPs C#

Introduction: Previously we have discussed about the Abstraction and Encapsulation and their difference in this blog. Today we will go for the other two properties of OOPs in C#, these are Inheritance and Polymorphism. Description: As we all know OOPs has 4 properties like Abstraction Encapsulation Inheritance Polymorphism Already...

Tuesday, October 6, 2015

Restore database from .BAK frile in Ms. SQL Server

Introduction: In this post I will show you how to restore a database from a backup file (extension of backup file is .bak). It is the most common way to restore a database though there are other several ways to do so, like through excel, access or csv. But in this section we will discuss with the...

Sunday, October 4, 2015

DataTable.Copy() Vs. DataTable.Clone() in C#

Introduction: In this post we will discuss about the two major methods of DataTable in C#. One is Copy() and another one is Clone(). Though these two are sounds identical but there are huge difference between these two. Lets see what are those.. Description: There are two things to copy or clone...

Saturday, October 3, 2015

Access modifiers in C#.NET with exampls

Introduction: Access modifier are the defined level of permission to access properties and methods. By declaring this access modifiers we defining a variable or a event can be access from assembly to within that class. Lets see how. Description: There are 4 major access modifiers in C#. These are... Public Private Protected Internal Protected...

Friday, October 2, 2015

Difference between Encapsulation and Abstraction in OOPs (C#.NET)

Introduction: There are 4 major properties of Object Oriented Programming (OOPs) as you know. These are Abstraction Encapsulation Inheritance Polymorphism Among of these four properties or features we will discuss about the first two (Abstraction and Encapsulation) in this post.  Description: So what actually Abstraction and Encapsulation are? Lets us know with an example Abstraction: Abstraction...

Popular Posts

Pageviews