eric <7ak@!_df.com> wrote:
> I'm trying to postpone the concrete type definition until runtime and I
> do want a List<Action<T>> of generic delegates for every key in the
> dictionary.
As Marc said, you can probably just use a multi-cast delegate to avoid
needing a List.
However, the point about generics is to give you *compile-time* safety.
If you won't know the type at compile time, other than that it's a
delegate, you should probably just make it a
Dictionary<string,Delegate>
--
Jon Skeet - <(E-Mail Removed)>
Web site:
http://www.pobox.com/~skeet
Blog:
http://www.msmvps.com/jon_skeet
C# in Depth:
http://csharpindepth.com