You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently SA1004 does not report a warning for the following code:
/// <summary>/// The summary text./// </summary>/// <param name="x">The document root.</param>/// <param name="y">The Xml header token.</param>privatevoidMethod1(intx,inty){}
According to the documentation for this rule, it should report a warning here. The exclusion for indented lines should only apply to content, such as the following:
/// <summary>/// The summary text./// </summary>/// <param name="x">The document root.</param>/// <param name="y">The Xml header token.</param>privatevoidMethod1(intx,inty){}
The text was updated successfully, but these errors were encountered:
Currently SA1004 does not report a warning for the following code:
According to the documentation for this rule, it should report a warning here. The exclusion for indented lines should only apply to content, such as the following:
The text was updated successfully, but these errors were encountered: