Hello, when I define record (see code example) and use "cc" to call smart constructor expansion, this does not work for C# record.
When I use "cc" in class, smart constructor tool is executed.
When I use "cc" in record, only the empty constructor is generated. No tool is executed. The constructor name is missing also. See code example bellow.
C#public record TestRecord
{
public ()
{
}
public string StringProp { get; }
public int IntProp { get; }
}
Hi,
Thank you for reporting this issue.
We reproduced it. Please give us some time to prepare corresponding changes.