1.

What Is Func In .net 3.5?

Answer»

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>

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>



Discussion

No Comment Found