我知道有一个extension for this in Visual Studio。但是,是否有人知道Visual Studio Express版本的类似扩展或设置?
让我崩溃的东西:
if (!string.IsNullOrEmpty(hotel.bg3))
{
colspan += 1;
TableCell c3 = new TableCell();
c3.Text = hotel.bg3.Replace(" ", "<br />");
c3.Style.Value = "border-color: #333333; border-width: 1pt; border-style: none none solid none; font-weight:bold;";
c3.HorizontalAlign = HorizontalAlign.Center;
row.Controls.Add(c3);
}
为:
if (!string.IsNullOrEmpty(hotel.bg3))
{...}
谢谢,
标记
答案 0 :(得分:8)
选择要折叠的代码,然后按 Ctrl + M ,然后按 Ctrl + ħ 即可。您也可以右键单击选择并选择大纲&gt;隐藏选择。要取消隐藏,请按 Ctrl + M ,然后按 Ctrl + U 或右键单击折叠的代码并选择大纲&gt;停止隐藏当前。
值得注意的是,Visual Studio的Express版本根本不支持扩展。