3
有沒有解決此問題的方法?使用反射的模糊例外
看看下面的代碼...
namespace ReflectionResearch
{
class Program
{
static void Main(string[] args)
{
Child child = new Child();
child.GetType().GetProperty("Name");
}
}
public class Parent
{
public string Name
{
get;
set;
}
}
public class Child : Parent
{
public new int Name
{
get;
set;
}
}
}
線 'child.GetType()的getProperty( 「姓名」)' 拋出B/C的名字是父母與子女之間的曖昧。我想要Child的「Name」。有沒有辦法做到這一點?
我試過各種綁定標誌,沒有運氣。