The Action<T> delegate return void. Is there any other built-in delegate which returns non void value?
The Action<T> delegate return void. Is there any other built-in delegate which returns non
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes.
Func<>returns the type specified as the final generic type parameter, such thatFunc<int>returns anintandFunc<int, string>accepts an integer and returns a string. Examples: