In C# is it possible to pass a method a nullable Func?
Neither Func<A, bool>? nor Func?<A, bool> is working.
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.
That doesn’t make sense.
All reference types, including
Func<...>, can already benull.Nullable types apply to value types (
structs), which cannot ordinarily benull.