C# 11 is introducing user-defined checked operators (public static T operator checked +(T value);) and currently triggers SA1000 saying no space is expected after checked.
The analyzer should be updated to allow a space when checked is used in this context, seeing as it differs from the normal checked(expr) syntax.
C# 11 is introducing user-defined checked operators (
public static T operator checked +(T value);) and currently triggersSA1000saying no space is expected afterchecked.The analyzer should be updated to allow a space when checked is used in this context, seeing as it differs from the normal
checked(expr)syntax.