I had a nasty typo that wasted my time and my colleague's time, it was something like this:
for (i = 0; i < blah; i++); // <- I had a semi-colon ...
In Java is this nice tool called FindBugs. Is there something similar in .Net?
Consider such code
public void m1(String text) { if(text == null) text = "<empty>"; System.out.println(text.toLowerCase()); }
I need a reporting tool which does the mining bug databases and filtering in the FindBugs. Here are the steps,
I'm searching for similar tools like FindBugs to analyze my code. I only saw that in the links page of the FindBugs site. I can search in webfor the tools, but I ...