Question 89. What Is Func In .net 3.5?
Func is a delegate in .Net that returns a value. The return type is specified using the TResult argument. There are 5 versions of Func in .Net. Func<TResult> Func<T,TResult> Func<T1,T2,TResult> Func<T1,T2,T3,TResult> Func<T1,T2,T3,T4,TResult>