Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC#nullable reference typesSingle-choice MCQ

In a project with `<Nullable>enable</Nullable>`, what is the declared nullability of the type parameter `T` in this open generic, and why?

static T GetDefault<T>() => default(T);