|
|
-
|
|
I have used delegates in my programming since C# 2.0. But I have seen there are lots of confusion going on with delegates so I have decided to blog about it. In this blog I will explain about delegate basics and use of delegates in C#. What is delegate? We can say a delegate is a type safe functio......
|
|
-
|
|
Recently in one of the project I have to vertical align text in div. so doing some internet search I have found there are no proper way to do it. So I thought it would be good do share this within my readers. Here is the code do vertically align text in div.
this is a very long text this is a......
|
|
-
|
|
In this post I am going to explain URL routing in greater details. This post will contain basic of URL routing and will explain how we can do URL routing in fewer lines of code. Why we need URL routing? Let’s consider a simpler scenario we want to display a customer details on a ASP.NET Page so ho......
|
|
-
|
|
We have all love Visual Studio 2010 and I am sure you all want to change color for menus, toolbars and title etc. Today I have found one of the most interesting Extension for Visual studio 2010 from which you can manage all this things. Don’t believe me I’m sure you won’t believe but this reality an......
|
|
-
|
|
I have been working with visual studio 2010 yesterday and I was searching some thing and same time I have found one great site for Visual Studio styles. http://studiostyl.es/ This site is cool and you can find lots of visual studio 2010 styles of your choice. Here is the screenshot of site. You c......
|
|
-
|
|
While you are doing code review then it is very necessary to search code and navigate code what you are reviewing and Navigate To feature of Visual Studio 2010 is made for the same. With the help of that feature you can easily navigate through code. You can go to Navigate Window via Edit-> Navigate ......
|
|
-
|
|
Recently one of reader of my blog how we can work with more then one web.config files in asp.net application. So I decided to blog about that. Here is the my reply for that. You can work with more then one web.config file in asp.net. But you can not put more then one web.config in each folder. Let’......
|
|
-
|
|
This blog will be part of visual studio 2012 features series. I personally like the Metro UI for Visual Studio 2102 but still some people are not happy with it. They really like Old Visual Studio 2010 layout and they wanted to have same kind of c...
|
|
-
|
|
I was needed to convert an string array into the comma delimited string and the old way to do that is too with for loop. But I was sure that there should be some ready made function that will do this very easily. After doing some research I have found...
|
|
-
|
|
Before C# 4.0 there was no on demand initialization by default. So at the time of declaration we need to create a value or object will be null or we have to create on demand initialization via coding.. But with C# 4.0 we now have lazy class. As per MSDN...
|
|