You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: C# warns in this case as something invalid. If you want to reference a nullable type at the top level, you need to write it as <see cref="Nullable{SomeTName}"/>
The text was updated successfully, but these errors were encountered:
If you want to reference a nullable type at the top level
It is not possible to reference a constructed nullable type at the top level (there is no corresponding syntax to generate for the documentation file). dotnet/csharplang#401 is a request to add support for this.
VB allows you to write:
but emits
for that.
Note: C# warns in this case as something invalid. If you want to reference a nullable type at the top level, you need to write it as
<see cref="Nullable{SomeTName}"/>
The text was updated successfully, but these errors were encountered: