Question:
Which method in Reflection can give me an empty class instance?
Answer:
var instance = (ObjectType)Activator.CreateInstance(typeof(ObjectType));
Which method in Reflection can give me an empty class instance?
var instance = (ObjectType)Activator.CreateInstance(typeof(ObjectType));