Most voted "static-analysis" questions
Static analysis is the analysis of software performed without the program running (what is known as dynamic analysis). In most cases this analysis is done in the source code of the program, and in certain cases in some form of intermediate code (Object code).
Learn more…3 questions
Sort by count of
-
4
votes1
answer150
viewsStatic Code Analysis - Identify possible division by Zero
Does anyone know / built some logic (rule) of static source code analysis (for Fxcop or Gendarme) that searches for possible gaps in the code that incur a division by zero? That is, a logic that…
-
4
votes2
answers649
viewsJava alternative to code-Climate
I wonder if anyone knows any tool/service for Java for the service code-Climate The service provides an analysis of the code under various aspects of good practice, potential security risks and many…
-
2
votes1
answer259
viewsSearch all methods without reference Visual Studio
How to search all methods without reference in Visual Studio, ie methods that are not being used, know that by clicking on a method with the right button and and choosing "Find All References" it…