While I was studying the delegate which is actually an abstract class in Delegate.cs
, I saw the following method in which I don't understand
- Why the return value uses
?
though it's already a reference(class) type ?[]?
meaning on the parameter
Could you explain?
public static Delegate? Combine(params Delegate?[]? delegates)
{
if (delegates == null || delegates.Length == 0)
return null;
Delegate? d = delegates[0];
for (int i = 1; i < delegates.Length; i++)
d = Combine(d, delegates[i]);
return d;
}
Nullable Reference Types are new in C# 8.0, they do not exist before.
It's a matter of documentation, and how warnings at compile-time are produced.
The exception "object not set to an instance of an object" exception is quiet common. But this is a runtime exception, it can partially discovered at compile time already.
For a regulate
Delegate d
you can always callmeaning, you can code it, at compile time nothing will happen. It may raise exceptions at runtime.
While for a new
Delegate? p
this Codewill produce a compiler warning.
CS8602: Dereference of a possibly null reference
unless you write:what means, call only if not null.
So you document a variable may contain null or not. It raises warnings earlier and it can avoid multiple tests for null. The same what you have for int and int?. You know for sure, one is not null - and you know how to convert one to the other.