I wanted to test out the new nullable reference types feature in C# 8.0.
I started a new project targeting .NET Core 3.0, enabled nullable reference types in the .csproj
file, and started coding. I created a simple list that takes a string[]
and returns the string
in that array that equals abc
. Now, because I am not certain that abc
actually exists in the array, I use FirstOrDefault()
, which should default to null
if a match is not found.
using System;
using System.Linq;
public string FindArgument(string[] args)
{
var arg = args.FirstOrDefault(x => x == "abc");
return arg;
}
My method returns string
, which should now be the non-nullable type. Since FirstOrDefault()
may return null
, I would expect the above method to yield a warning when returning the maybe null arg
variable. It does not.
Looking at the the signature for FirstOrDefault()
in Visual Studio, it is clear why: The method returns a string
, not the nullable equivalent string?
I would expect.
Using the method body below does yield the warning I expected:
var arg = args.Contains("abc") ? "abc" : null;
return arg;
Do system libraries (in this example System.Linq
) really not expose nullability information when targeting .NET Core 3.0?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…