Reporter | Vladimir Reshetnikov (nikov) |
---|---|
Created | Apr 28, 2012 12:19:28 AM |
Updated | Apr 28, 2012 12:22:05 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 Program { static void Main() { Action<string> a = Console.WriteLine; Action<object> b = Console.WriteLine; var c = a + b; // System.ArgumentException: Delegates must be of the same type. } }