Reporter | Vladimir Reshetnikov (nikov) |
---|---|
Created | Feb 16, 2012 5:12:59 AM |
Updated | Feb 16, 2012 5:12:59 AM |
Priority | Normal |
Type | Feature |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Unassigned |
Subsystem | No subsystem |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
using System; class C { static void Main() { Action a = delegate { }; Action b = delegate { }; var c = Delegate.Combine(a, b); if(c == null) // Expression is always false { } } }