One may not always know the Type of an object at compile-time, but may need to create an instance of the Type.
Type
How do you get a new objec
ObjectType instance = (ObjectType)Activator.CreateInstance(objectType);
The Activator class has a generic variant that makes this a bit easier:
Activator
ObjectType instance = Activator.CreateInstance();