0
我有下面的類結構(僞)在類的屬性:設置的對象上的字段是使用反射在.NET
Class A
{
Property string Who;
Property string Where;
}
Class B
{
Property A Information;
}
Class C
{
Property String Who;
}
我試圖找出如何設置使用設置B.A.Who = C.Who
.NET 4.0中的反射。
謝謝!