Here's the class with a single property, and a constructor that got generated by the smart constructor feature.
C#public class Test
{
public string? Value { get; }
public Test(string value)
{
Value = value;
}
}
There was another ticket with information that this has been fixed for 20.2.5, but I am on version 20.2.7 and this still does not work properly.
Hello,
Thank you for the sample code. I reproduced this issue. We need some time to research it. Please bear with us.