❔ How to make a generic class property nullable?
I'm trying to have a generic interface with a nullable property:
But this doesn't work, as when I add it to a class, it gives an error when I try to make the implementation nullable aswell:
I says that
Any idea why this doesn't work? is it even possible to this is C#?
But this doesn't work, as when I add it to a class, it gives an error when I try to make the implementation nullable aswell:
I says that
Foo doesn't implement CreatorId, and it only works when I have it as Guid CreatorIdAny idea why this doesn't work? is it even possible to this is C#?