Hello, change visibility does not work for C#9 records. Place cursor to public keyword and press Alt-Down to change visibility of Class.
C#public record Class
{
public string Prop1 { get; set; }
public int Prop2 { get; set; }
}
after several visibility changes:
C#public record Class
{
internal internal internal internal public string Prop1 { get; set; }
internal internal internal internal public int Prop2 { get; set; }
}
Hi Karel,
Thank you for informing us about this issue.
I reproduced this.
Please give us some time to fix it. We will inform you once the changes are ready.