提问人:Arcturus 提问时间:11/15/2023 更新时间:11/17/2023 访问量:50
VS 2022 - 在快速操作中更改完整属性格式
VS 2022 - Change Full Property format in Quick Actions
问:
是否可以更改 Visual Studio 2022 中“快速操作”菜单生成的“完整属性”的格式:
public string Country { get => country; set => country = value; }
到过去的样子:
public string Country
{
get
{
return country;
}
set
{
country = value;
}
}
我非常喜欢后者。
答:
评论