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
An event which implements an interface member wrongly reports SA1648 when it has in its XML documentation.
public interface IX
{
/// <summary>
/// Raised when an E happens.
/// </summary>
event EventHandler E;
}
public class B
{
/// <summary>
/// Raised when a Q happens.
/// </summary>
public virtual event EventHandler Q;
}
public class Z : B, IX
{
/// <inheritdoc />
public event EventHandler E;
/// <inheritdoc />
public override event EventHandler Q
{
add { }
remove { }
}
}
SA1648 is wrongly reported for E. It is correctly not reported for Q.
The text was updated successfully, but these errors were encountered:
An event which implements an interface member wrongly reports SA1648 when it has in its XML documentation.
SA1648 is wrongly reported for
E
. It is correctly not reported forQ
.The text was updated successfully, but these errors were encountered: