All quizzes
C#CoreMultiple choice

Given string? name = null; what is the value of int len = name?.Length ?? -1;?

string? name = null;
int len = name?.Length ?? -1;