Reporter | Brian (O.E) |
---|---|
Created | Apr 28, 2012 12:37:20 AM |
Updated | Apr 28, 2012 12:38:18 AM |
Priority | Normal |
Type | Feature |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Alexey Kuptsov (alexey.kuptsov) |
Subsystem | Quick Fixes |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
This would allow one to automatically change
to
int[] x; new Lazy<IEnumerable<int>>(() => x.ToList());
to
int[] x; new Lazy<IEnumerable<int>>(x.ToList);