Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Software to test C# code

Consider i have a C# code, I need some tool that would perform an analysis of my code and report bugs and vulnerabilities. Are there any open source tools, something like klocwork.?

like image 922
SyncMaster Avatar asked Jan 23 '23 17:01

SyncMaster


2 Answers

FxCop can perform static analysis of compiled assemblies, ReSharper can analyze your program at source code level. Certain editions of Visual Studio have Code Analysis built into them.

As a sidenote: get up to speed on unit testing (think NUnit et al.)

like image 120
Anton Gogolev Avatar answered Feb 04 '23 23:02

Anton Gogolev


fxcop would be my first choice

like image 31
Colin Cassidy Avatar answered Feb 04 '23 21:02

Colin Cassidy