I just installed Visual Studio 2017. When I open an existing website, I get all sorts of warning messages such as this one:
IDE1006 Naming rule violation: These words must begin with upper case
characters: swe_calc
In the code it is defined as:
[System.Runtime.InteropServices.DllImport("swedll32.dll")]
public static extern Int32 swe_calc(double tjd, int ipl, Int32 iflag, IntPtr xx, IntPtr serr);
This also occurs with my ASP.Net controls. As an example of a DropDownList:
IDE1006 Naming rule violation: These words must begin with upper case
characters: ddlMonth_SelectedIndexChanged
How can I eliminate these type of warnings under Visual Studio?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…