如何获取对象框中的实例的类型名称(以字符串形式)。 我不能使用is或as运算符。 例如:
object a= student1; //student1 is instance of Student class
接下来我将在另一个库中获取它,其中没有Student类,也没有引用。 我需要这样的事情:
string typeName=GetTypeNameInsideObject(obj1)
由于
答案 0 :(得分:6)
这应该可以解决问题:
a.GetType().Name