C# 8.0 introduces nullable reference types. Here's a simple class with a nullable property:
public class Foo { public String? Bar { get; set; } }
Is there a way to check a class property uses a nullable reference type via reflection?
Aucun commentaire:
Enregistrer un commentaire