Search Results

0
votes

Is there any way to get rid of the long list of usings at the top of my .cs files?

In VS2008, you can right click on the CS file and choose 'Organize Usings'. It will strip unused using and sort them for you too. Other than that, I would just use #region. Also, CTRL+M+O will c …
0
votes

How to parse a query string into a NameValueCollection in .NET

Just access Request.QueryString. AllKeys mentioned as another answer just gets you an array of keys. …
0
votes

Good way to time SQL queries when using Linq to SQL

We use SQL Profiler to test our queries with LLBLGen Pro. …