Example:
C#string myProperty;
public string MyProperty
{
get => myProperty;
private set => myProperty = value;
}
Code Action "Expand Accessor"
Result:
C#string myProperty;
public string MyProperty
{
get => myProperty;
set
{
myProperty = value;
}
}
Hello,
Thank you for the code sample. I reproduced the issue. We are working on it.
We'll update this thread as soon as we have news to share.