¿Por qué esta compilación:Diccionarios y divertido Lambdas
public Dictionary<ValueLineType,
Func<HtmlHelper,
string,
object,
Type,
string>> constructor =
new Dictionary<ValueLineType,
Func<HtmlHelper,
string,
object,
Type,
string>>();
pero no este otro con un parámetro adicional en la Func (booleano):
public Dictionary<ValueLineType,
Func<HtmlHelper,
string,
object,
Type,
bool,
string>> constructor =
new Dictionary<ValueLineType,
Func<HtmlHelper,
string,
object,
Type,
bool,
string>>();
O yo estoy ciego o hay algo más que voy a aprender hoy: D
Por cierto, el error para la segunda línea es: "Usar el tipo genérico 'System.Func' requiere '2' tipos de argumentos" –
antonioh
BTW, la palabra clave 'var' es su nuevo amigo. Consulte http://msdn.microsoft.com/en-us/library/bb383973.aspx y http://stackoverflow.com/questions/9033#9035. – lacop
definitivamente mucho mejor que escribir todo eso dos veces! – antonioh