Preguntas con la etiqueta [captured-variable]

Lista captured-variable preguntas

Variable capturada en un bucle en C#

11
respuestas
286
votos
76.0k
vistas

Encontré un problema interesante sobre C#. Tengo un código como el siguiente. List<Func<int>> actions = new List<Func<int>>(); int variable = 0; while (variable < 5) { actions.Add(() => variable *