Start here
Reference
Product components
Coding environments
Administration
Community
Legal
The condition of a 'switch' statement is constant.
1 class Foo { 2 void Method() { 3 switch(3 + 2) // defect - the condition is constant 4 { 5 /* ... */ 6 } 7 } 8 }