|
-
July 16th, 2003, 10:05 AM
#4
Ok.. here is a workaround I think will work. The type you receive must be accessible in the application domain.
Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();
foreach (Assembly a in assemblies) {
object o = a.CreateInstance("System.Windows.Forms.TextBox");
if (o != null) {
Type type = o.GetType();
MemberInfo[] mIArray = type.GetMembers();
}
}
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|