我使用Visual Studio 2015年(14.0.25431.1版)與JetBrains ReSharper的詳情終極2017年2月2日(建於2017年10月06日)ReSharper的代碼風格問題,括號換行符
我有這樣的代碼(我目前的配置):
routes.MapRoute(
name : "Default",
url : "{controller}/{action}/{id}",
defaults : new {
controller = "Home",
action = "Index",
id = UrlParameter.Optional
});
我想是這樣的:
routes.MapRoute(
name : "Default",
url : "{controller}/{action}/{id}",
defaults : new {
controller = "Home",
action = "Index",
id = UrlParameter.Optional
}
);
任何人知道如何做到這一點?
任何改進將非常感激
在此先感謝!
該操作系統詢問如何以特定方式格式化其代碼,而不是使用什麼鍵盤快捷鍵來格式化其代碼。 –
@PiersMyers準確地 – kaezon