public void TestaAcumular() { int[] numeros = { 10, 20, 30, 40 }; Funcoes.Acumular((s, n) => (s >= n) ? n : s, Int32.MaxValue, numeros.ToList()); }