How I can get the name of the parent class of some class using Reflection on C#?
A:
Type type = obj.GetType();
Type baseType = type.BaseType;
string baseName = baseType.Name;
JDunkerley
2009-10-06 09:38:37