Event type can't be Action<> ?

Posted by Freshblood on Stack Overflow See other posts from Stack Overflow or by Freshblood
Published on 2010-06-13T23:50:02Z Indexed on 2010/06/13 23:52 UTC
Read the original article Hit count: 172

Filed under:
|
|
|

Hello everybody

this works

public event Func<int,int> createEvents;

but why not this ?

public event Action<int> createEvents;

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET