我在德语Windows 7上使用德语Visual Studio Professional 2012和2013.根据MSDN文档(例如http://msdn.microsoft.com/de-de/library/ms182240.aspx,http://msdn.microsoft.com/de-de/library/bb264474.aspx等),我希望此代码
class myClass // Complete nonsense
{ // - I only want to raise code analysis naming rules violations
public int addintegers(int a, int b)
{
checksum++; ;
multipart++;
int Sum = a + b;
return (Sum);
}
static int X = 1;
static int x = 2;
int checksum;
int multipart;
public static int addplus(int y)
{
return x + X +y;
}
当我选择规则集“Microsoft All Rules”时,将生成多个代码分析警告。但是,我在代码分析中没有违反名称规则。
有人可以告诉我我错过了什么吗?感谢。
答案 0 :(得分:0)
您只会在公共类型上违反命名规则。它假设您并不真正关心内部代码,只关心其他人可能使用的公共类型。