I have an application that has a main form and a user can create a number of
other forms at run time. Most of those forms are created through reflection
by first using Assembly.CreateInstance to create the object then get the
methodInfo of a certain method, and finally calls MethodInfo.Invoke.
At certain point of the execution I need to close all those forms except my
main form.
Anybody knows if there is a way of finding all those forms from my main
form?
Thanks.