0
Action(T) Generic Delegate
Posted by Tim on January 19, 2009 in C#
Very useful delegate to create anonymous functions…why? This is especially useful when you have repeated code within a function. This particular example gets a list of tables from a database based on a key that is consumed by the id parameter. The Action(T) delegate can have zero to several different parameter types. Action getTables(String id) [...]


