Author: admin

  • Blog
  • Author: admin

Tip-Convert array to Comma delimited string

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 string.Join. With the help of

Ready Made Site Search Engine For ASP.NET

If you are developing a site search in your asp.net site. Now you don’t need to develop it. Now it will be directly done adding a great component. It is robust,unique and very fast. It is also provide great features like a standard search engine. You can also download free demo version and test it.

NSubstitute Introduction and Why I like it

Recently I am heavily learning Test Driven Development and Domain Driven design. As you know With TDD you need to have a mocking libraries. So after doing on research on internet they are three libraries available in Microsoft.NET development world which are quite mature. Rhino Mocks NSubstitute Moq I have gone through all of above

All operator in linq

Few days back I came across “All” operator in Linq. I thought it will be good idea to write a blog post about it and share it with community. It’s almost similar to select it returns all the element in the input sequence with matching condition in given predicate. Following is syntax for All. public