-1
votes
0answers
52 views
What do you know about your code? [closed]
This is very open ended question. I like to know what a programmer knows about his/her code for a given project. A programmer has wealth of knowledge about the code they have wri …
0
votes
2answers
50 views
Clean-rooming when software testing
I want to examine exactly how my code operates when using other libraries to which I do not have the code for. Whilst I can do this online (i.e. with FileMon, RegMon and TCPView fr …
1
vote
5answers
86 views
Syntax analysis question
In school we were assigned to design a language and then to implement it, (I'm having so much fun implementing it =)). My teacher told us to use yacc/lex, but i decided to go with …
1
vote
5answers
80 views
Static Code Analysis - Which ones to turn on first?
Hi,
We're using VS2008 with the built in static code analysis rule set.
We've got a relatively large C# solution (150+ projects) and while some of the projects (< 20) are using …
2
votes
8answers
152 views
Can I safely ignore CodeAnalysis warning: replace string == “” with string.IsNullOrEmpty ?
I've got code similar to this:
string s = CreateString();
if (s == "") foo(s);
If s equals "", foo should be called. If string is null, which should never happen, then a NullRef …
3
votes
6answers
114 views
Programmatically inspect .NET code
I am looking for a way to programmatically inspect a .NET (C#, VB.NET,..) source code to perform static code analysis.
I'd like to perform queries on the code such as:
- list clas …
7
votes
5answers
141 views
php best practices enforcement
I try to ensure that the code I write is of the best quality possible, so I strive to follow accepted sets of best practices.
In perl, I try to follow the guidelines in the popula …
0
votes
2answers
48 views
How to Check References of Annotated Methods
I'm trying to find a way to check my classes for references of methods with a particular annotation (think "Deprecated").
As far as i see it, analysing byte code won't work becaus …
-2
votes
2answers
77 views
Can someone analyse what the code does? [closed]
Private Const BITS_TO_A_BYTE = 8
Private Const BYTES_TO_A_WORD = 4
Private Const BITS_TO_A_WORD = 32
Private m_lOnBits(30)
Private m_l2Power(30)
Private Function LShift(lValue, i …
0
votes
1answer
17 views
Configuring Team System Code Analysis via a FxCop rules file
Is there anyway to configure the code analysis rules in Visual Studio Team System to match those in an FxCop configuration file and keep them in sync automatically?
Not all the de …
1
vote
4answers
48 views
C# lock and code analysis warning CA2002
In my application I have a form that starts synchronization process and for number of reasons I want to allow only one synchronization to run at a time. So I've added a static bool …
1
vote
1answer
63 views
How to configure StyleCop to suppress warnings on generated code?
Another project, Visual Studio's Code Analysis has this option. But I couldn't find it for StyleCop (AKA Source Analysis).
The file I want to ignore is a dbml's .designer.cs code, …
17
votes
29answers
1k views
Why is code quality not popular?
I like my code being in order, i.e. properly formatted, readable, designed, tested, checked for bugs, etc. In fact I am fanatic about it. (Maybe even more than fanatic...) But in m …
5
votes
7answers
365 views
Is there a way to figure out the top callers of a C function?
Say I have function that is called a LOT from many different places. So I would like to find out who calls this functions the most. For example, top 5 callers or who ever calls thi …
29
votes
17answers
2k views
What static analysis tools are available for C#?
What tools are there available for static analysis against C# code? I know about FxCop and StyleCop. Are there others? I've run across NStatic before but it's been in development f …
