2
當我運行的CodeRush的清理文件命令需要格式化這樣的代碼:的CodeRush代碼清理設置
public object GetConfig()
{
//fluent mappings are lined up
return MsConfig.MsSql2008
.ShowSql()
.UseReflectionOptimizer()
.ConnectionString(_connstring);
}
和格式是這樣的:
public object GetConfig()
{
//fluent mappings are left justified
return MsConfig.MsSql2008
.ShowSql()
.UseReflectionOptimizer()
.ConnectionString(_connstring);
}
如何防止的CodeRush左證明我的方法鏈接?
已經實施?我今天下載了這個試用版,但是我沒有看到它,我想要我特別爲Linq lambda提供的縮進。 –