csharp code inspection

Can you please advise me on what MSDN premire licenses provide built in csharp code inspection capability, if any. Does this capability come with any VS product, such as Team Foundation Server, or does it have to be purchased from 3rd party? If so, can someone please suggest best product(s). I'm particularly interested in preventing security flaws.
[351 byte] By [hcTester] at [2007-12-28]
# 1
No MSDN license has any C#-specific code inspection. Team Suite and Team Developer have Code Analysis that analyzes any managed assembly. This can also be done with the freely-downloadable FxCop application which is the basis for the Visual Studio Code Analysis feature.
PeterRitchie at 2007-9-4 > top of Msdn Tech,Visual C#,Visual C# General...
# 2
FxCop will find some security issues for you, but in reality security is a hard problem, and cannot be solved using automated tools. Frankly, the only way to have good security is to design it in from the beginning and think about it constantly. It cannot easily be retrofitted to an existing system. Can I suggest the book Writing Secure Code as a good starting point.
SeanHederman at 2007-9-4 > top of Msdn Tech,Visual C#,Visual C# General...