I’m using reflection to loop through a Type‘s properties and set certain types to their default. Now, I could do a switch on the type and set the default(Type) explicitly, but I’d rather do it in one line. Is there a programmatic equivalent of default?
I’m using reflection to loop through a Type ‘s properties and set certain types
Share
In the newer version of .net such as .net standard,
type.IsValueTypeneeds to be written astype.GetTypeInfo().IsValueType