Reporter | Olga Lobacheva (olka) |
---|---|
Created | Feb 7, 2011 5:37:01 PM |
Updated | Jan 16, 2012 4:17:46 PM |
Priority | Normal |
Type | Feature |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Alexey Kuptsov (alexey.kuptsov) |
Subsystem | No subsystem |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
Quick fix: 'Fix signature' exists for anonymous delegate and doesn't exists for lambda expression.
using System; public class B { private event Func<int> E; public void Foo() { E += (int x) {caret}=> 34; } }