Saved Bookmarks
| 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 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> |
|