我有類(客戶),它擁有超過200個字符串變量屬性。我正在使用key和value參數的方法。我試圖從xml文件提供鍵和值。爲此,必須用Customer類的屬性(字符串變量)替換值。字符串變量名稱
即
Customer
{
public string Name{return _name};
public string Address{return _address};
}
CallInput
{
StringTempelate tempelate = new StringTempelate();
foreach(item in items)
tempelate .SetAttribure(item.key, item.Value --> //Say this value is Name, so it has to substitute Customer.Name
}
這可能嗎?
也許你應該考慮重新設計你的班級,200個屬性有點瘋狂:p 但是對於你來說,方法反思是一種方式。 您可以使用Dictionary作爲示例。 –
2009-08-18 12:40:19
你找約翰 互聯網絡街頭 –
2009-08-18 12:41:48
@約翰·諾蘭,只是類似於 – Mohanavel 2009-08-18 12:44:48