Въпрос за домашно по Functional programming
Здравейте,
срещам трудности със следната задача :
Write a simple program that reads from the console a set of numbers and prints back onto the console the smallest number from the collection. Use Func<T, T>.
Към момента успях да сътворя тази глупост:
static void Main(string[] args)
{
var list = new List<int>() { 2,3,4,5,1,6,7};
var res = PrintName(list, l => l.Min());
Console.WriteLine(res);
}
public static int PrintName(List<int> list, Func<List<int>,int> func)
{
return func(list);
}
но не съм сигурен това ли е целта... :) Та въпроса е да ми дадете някакви насоки или обяснение.
Благодаря предварително.