0

サブクラスのプロパティにどのようにアクセスできますか?, Y プロパティにアクセスできます.この場合は Name ですが x にはアクセスできません.別のケースも同じですが,x の単一参照の代わりに x のリストを使用します.この 2 番目のケースではすべてのオブジェクトをどのように反復しますか? .

    public class X
{
    public int ID{get;set;} 
    public int Name{get;set;}
}

public class y
{

    public string Name{get;set;}
    public x Reference{get:set;}
}

    //second case 
public class y
{

    public string Name{get;set;}
    public List<x> Reference{get:set;}
}



public static void Main()
{
    y classY = new y();
    y.Name = "some text here";
    y.x.ID = "1";
    y.x.Name ="some text for x here";
}

// in another class, pass y
// so, in this method I only can get 'y' values, but not x
Hashtable table = new Hashtable();
public void GetProperties(object p)
{
    Type mytype = p.GetType();
    var properties = mytype.GetProperties(BindingFlags.Public | BindingFlags.Instance);

    foreach (var property in properties)
    {
        table.Add(property.Name, property.GetValue(p, null));
    }   
}

アップデート

インターフェイスでも試してください

public interface ISub
{}
public class X : ISub // etc....


if (typeof(ISub).IsAssignableFrom(property.GetType()) ) // this alwas as false 
4

1 に答える 1

0

リストであるかどうかを知るために、各プロパティを評価する必要があります。

foreach (var prop in properties)
{
    var obj = prop.GetValue(p, null);
    if (obj is List<x>)
    {
        var list = obj as List<x>;
        // do something with your list
    }
    else
    {
        table.Add(prop.Name, obj);
    }
}   
于 2013-01-14T17:17:55.420 に答える