Search Results

0
votes

How to build custom assertions in C#/VS ?

From these posts it looks like MbUnit already supports this with AreElementsEqualIgnoringOrder. …
5
votes

What’s Your Biggest Visual Studio 2008 Annoyance?

The biggest annoyance is when you open a project that was built in another version of VS it has to convert. It should be able to open any project in read-only mode for browsing. I also do …
2
votes

C# cross reference generation?

ReSharper and CodeRush/RefactorPro integrate with visual studio and provide better visibility for finding usages and references. They each have a two-panel display with a tree structure of referen …
1
vote

Need help with three visual studio errors - C++ errors occuring when trying to build solution

You have void before your call which is the signature of the function - you are not actually calling it which is why the compiler is complaining. …