csharpier icon indicating copy to clipboard operation
csharpier copied to clipboard

Constructor is breaking earlier than it should

Open belav opened this issue 4 years ago • 0 comments

public class ClassName
{
    // this is 92, but if you add one more character it breaks
    public AutoMapperMappingException(string message, Exception innerException_____________)
        : this(message, innerException) => Types = types;
    // this doesn't break yet
    public void AutoMapperMappingException(string message, Exception innerException________________)
    { }
}

belav avatar Jun 12 '21 16:06 belav