Reporter | Andy Fischer (fischermaen) |
---|---|
Created | Feb 22, 2012 5:54:15 PM |
Updated | Feb 22, 2012 5:54:15 PM |
Priority | Normal |
Type | Feature |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Unassigned |
Subsystem | Language - C# |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
I am missing a feature to format LINQ extenstion calls. Assuming I have following call:
var myValue = Something.DoSomething(x => x.Important).DoNext(x => { Statement(); Statement(); });
I would like to have a feature to format the code like that:
var myValue = Something.DoSomething(x => x.Important)
.DoNext(x =>
{
Statement();
Statement();
});
var myValue = Something.DoSomething(x => x.Important).DoNext(x => { Statement(); Statement(); });
I would like to have a feature to format the code like that:
var myValue = Something.DoSomething(x => x.Important)
.DoNext(x =>
{
Statement();
Statement();
});