D
Davej
http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis#.NET
Is anyone here using a lint-like program for C# ? I just found a bug
that would be easy to search for: I'd like to see a warning for an if
that follows another if with no space between them if the second if is
followed by one or more else if's.
Would Lint or these other style tools have warned about this?
if (...)
{
....
}
if (...)
{
....
}
else if (...)
{
....
}
else if (...)
{
....
}
else if (...)
{
....
}
Is anyone here using a lint-like program for C# ? I just found a bug
that would be easy to search for: I'd like to see a warning for an if
that follows another if with no space between them if the second if is
followed by one or more else if's.
Would Lint or these other style tools have warned about this?
if (...)
{
....
}
if (...)
{
....
}
else if (...)
{
....
}
else if (...)
{
....
}
else if (...)
{
....
}