我有这样的属性类:
public class ABC{
public string a {get;set;}
public int? b {get;set;}
public string c {get;set;}
public int? d {get;set;}
public int? e {get;set;}
public int? f {get;set;}
}
string lineabc = "8004CF::JAI2310:0:5:0";
string[] splitrow = lineabc.Split(':');
我必须循环设置此对象属性类中的所有值,我希望通过 splitrow 数组值在对象类中设置这些值。
我不想在类对象属性中逐个设置值,如 :
ABC.a = splitrow[0];