Using Func<...> and params?
Posted
by grady
on Stack Overflow
See other posts from Stack Overflow
or by grady
Published on 2010-04-16T13:16:02Z
Indexed on
2010/04/16
13:23 UTC
Read the original article
Hit count: 275
Hello, I wrote this code:
public static bool MyMethod(int someid, params string[] types)
{...}
How could I write that using Func?
public static Func < int, ?params?, bool > MyMethod = ???
Thanks :-)
© Stack Overflow or respective owner