I have a nullable dictionary type which in turn can then have nullable values, however I am using the null-coalescing operator to throw an exception and break execution of the code if the expression ever evaluates to a null value.
How then is my variable type still being evaluated to a nullable string?
2