Reporter | Vladimir Reshetnikov (nikov) |
---|---|
Created | Oct 8, 2009 4:48:22 PM |
Updated | Feb 28, 2012 6:01:21 PM |
Resolved | Feb 28, 2012 6:01:21 PM |
Priority | Critical |
Type | Bug |
Fix versions | Next |
State | Fixed |
Assignee | Evgeny Pasynkov (pasynkov) |
Subsystem | No subsystem |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
using System; class A { public Func<int, int, int> Foo() { return (x, y) => Bar(x, y); // here } public int Bar(int x) { return x; } public int Bar(int x, int y) { return x + y; } }