獲取項目的值對象鑑於一些對象,看起來像這樣:通過變量名
public class MyObject
{
public int thing_1 { get; set; }
public int thing_2 { get; set; }
public int thing_3 { get; set; }
....
public int thing_100 { get; set; }
}
我怎麼會做這樣的事情:
int valueINeed = GetValue(MyObject, 2);
這將調用...(和這是我所需要的幫助)...
private int GetValue(MyObject, int find)
{
return MyObject.thing_[find];
}
我寧可不去逐行的轉換,如果是可以避免的。
好點。我會清理它 –