Ne, damit erhalte ich die TopForm. Um genauer zu sein, es ist ein Mdi child was ich schließen möchte, und dieses erhalte ich ja auch durch:
Type type = this.Parent.GetType();
ConstructorInfo constructorInfo = type.GetConstructor(Type.EmptyTypes);
FormTest formInstance = (FormTest)constructorInfo.Invoke(null);
formInstance.Close();
nur Closed die Form nicht, obwohl genau diese ermittelt und instanziert wird.