Code Analysis is the process of analyzing the code of the application to discover, review, validate or verify certain properties of the application.
I use underscores for my test methods for a better readability and I want to suppress FxCop errors/warnings for …
c# .net namespaces code-analysis fxcopOur team uses the Code Analysis feature with a custom ruleset to cause our build to fail if we forget …
c# code-analysis roslyn-code-analysisI have an endpoint that receives a String from the client as seen below: @GET @Path("/{x}") public Response doSomething(@…
java security code-analysis static-code-analysis checkmarxI am using PMD to analyze code and it produces a few high priority warnings which I do not know …
java code-analysis static-analysis pmdLet's say I have an enumeration of all currencies: public enum CurrencyType { /// <summary> /// United Arab Emirates dirham /// </…
c# .net code-analysis roslyn fxcopWhat tools and techniques do you use to find dead code in .NET? In the past, I've decorated methods with …
c# .net refactoring code-analysisI'm trying to get msbuild to output code analysis info like it does in VS. I have a configuration for …
configuration msbuild code-analysis static-code-analysisI'm looking to scan a group of .cs files to see which ones call the Value property of a Nullable&…
c# code-analysis roslyn findallHaving the following C# code with generic type parameter attribute: [System.AttributeUsage(System.AttributeTargets.GenericParameter)] public class GenericParameterAttribute : System.Attribute { } …
c# generics code-analysis stylecopI know their complete counterparts mean that NP - complete is the hardest in the NP problems and co-NP-complete means …
algorithm code-analysis np