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
The extension proposes to add a comment to a partial class that is already docummented elsewhere.
Example:
File1.cs
namespace Example {
/// <summary>
/// A class that exists for many important reasons
/// </summary>
public partial class MyClass {
/// <summary>
/// No documentation.
/// </summary>
public void Method() {
System.Console.WriteLine(MyString);
}
}
}
File2.cs
namespace Example {
// Issue here
public partial class MyClass { // CD1600: The class must have a documentation header.
/// <summary>
/// Hi!
/// </summary>
public string MyString => "Hello!";
}
}
The text was updated successfully, but these errors were encountered:
The extension proposes to add a comment to a partial class that is already docummented elsewhere.
Example:
File1.cs
File2.cs
The text was updated successfully, but these errors were encountered: