我有以下代码
SetField("TextField1", ( item.FirstName == null || item.FirstName[0] == null)
? "" : item.FirstName[0].Value);
SetField("TextField2", ( item.MiddleName == null || item.MiddleName[0] == null)
? "" : item.MiddleName[0].Value);
SetField("TextField3", ( item.LastName == null || item.LastName[0] == null)
? "" : item.LastName[0].Value);
................
like this 50-60 lines
有没有办法可以编写函数并传入参数来减少这段代码
(例如)
void Helper(string fieldName, somethinghere )
{
SetField(fieldName,usesomethinghere);
}
答案 0 :(得分:1)
如何在Item类中创建一个新的只读属性?
类似的东西:
public String FirstName_for_display {
get {
if(FirstName == null || FirstName[0] == null)
return "";
return FirstName[0].Value;
}
}
并用以下内容调用你的SetField:
SetField("TextField1", item.FirstName_for_display)
答案 1 :(得分:1)
我们不知道item
属性的数据类型,但假设它是T
,如果你定义(重载):
void SetField(string fieldName, T[] itemProperty)
{
SetField(fieldName,
itemProperty == null || itemProperty[0] == null ? "" : itemProperty[0].Value);
}
然后您的50-60行可以缩减为:
SetField("TextField1", item.FirstName);
SetField("TextField2", item.MiddleName);
SetField("TextField3", item.LastName);
...
这就是你要找的东西吗?
答案 2 :(得分:0)
尝试类似:
Private void fieldsSetter(string[] fieldnames, object[] items)
{
for(int s=0; s<fieldnames.Count(); s++)
{
SetField(fieldnames[s], (((item)items).FirstName == null || ((item)items).FirstName[0] == null) ? "" : ((item)items).FirstName[0].Value);
}
}
虽未测试....