0
4

2 回答 2

0

您可以在调用时查询属性。

public int Value{
      get{
         int myValue = getValue();
         return myValue;
      }
}
于 2013-09-11T11:12:57.287 回答
0

尝试这样做:

public object[] GetProperties(int state)
{
 object[] temp;
 switch(state)
 {
    case(0):
    {
        temp=new object[]{Name,Color};
    }break;
    case(1):
    {
        temp=new object[]{Name,door};
    }
 }
}

之后,你知道,你需要返回什么函数,并且很容易解析返回结果!

于 2013-09-11T11:18:34.013 回答