Category: My Blog

  • Blog
  • Category: My Blog

Test Driven Development is your friend

I have seen lots developers are not seeing benefits of Test Driven development. When you do Test Driven development there are lots of benefits. So I thought it will be good idea to write a blog post about it. What is Test Driven Development: As per wikipedia Test Driven Development is Test-driven development (TDD) is

Advantages of inheritance in C#.NET,VB.NET

Following are some advantages of inheritance.1. No need to write code from scratch. You can start coding with existing classes. 2. Through inheritance you can very easily convert small system into large systems 3. You can lots of classes with the same root but have different implementations of classes. 4. Code reusablity through inheritance increased.

StructureMap–Getting Started

In this post we are going to learn about How we can do dependency injection with StructureMap. Here we are going to take a sample application of shopping cart. This shopping cart can process two type of orders 1. Sales order 2. Purchase Order. We want an abstraction for this. So first we are going

Grid view row span in ASP.NET

I know for some one it will sound like a very basic code for the row span of grid view but still there are lots of people that does not about that. So I thought it will be a good idea to write a blog post about it. So in this blog post we are