c# - Code analysis naming rules in Visual Studio 2012/2013 -
I am using German Visual Studio Professional 2012 and 2013 on a German Windows 7. According to the MSDN document (i.e., etc.) I hope this code
class myClass // complete nonsense {// - I just violated the code naming rule rules public int addintegers (int a, int B) {checksum ++; ; Multiparty ++; Int yoga = a + b; Return (yoga); } Fixed int X = 1; Static x = 2; Int checksum; Int Multipart; Public Fixed Ent AdPlus (Int y) {Return X + X + Y; } Code codes will generate many code analysis warnings while selecting "Microsoft All rules". However, I do not get any name rule violation in code analysis. Can anyone tell me what I remember? Thank you.
You only get naming rules violation on public types, it assumes that you actually have internal code Do not worry, only about your public type that other people can consume.
C# code analysis is one of the best tool for code analysis. Hope this will help everyone who want a powerful tool for C# code analysis.
ReplyDelete