Search Results

0
votes

Determining if enum value is in list (C#)

You need to use the [Flags] attribute (check here) on your enum; then you can use bitwise and to check for ind …
0
votes

Adding functonality to Linq-to-SQL objects to perform common selections

Check out my answer to "switch statement in linq" and see if that points you in the right direction... The technique i demonstrate there is the one that got me past the scary "no translati …
1
vote

Is there a test runner for .NET tests that can run multi-threaded to take advantage of multi-core machines?

Just yesterday i came across this post by Damon Payne: http://www.damonpayne.com/2008/0 …
0
votes

Is there an easy way to add (#) to a filename when you find a duplicate filename?

For a LINQ-ish solution to this, check out Keith Dahlby's recent blog post, " …