Hi,
given the following Code:
class Class1
{
string Text => "";
bool Value { get; set; }
}
When I try to move "Text" below "Value" via VA Outline drag and drop, the following bad code is generated:
class Class1
{
"";
bool Value { get; set; }
string Text =>}