个人资料

跳过导航链接首页 > 博客列表 > 博客正文

C#遍历属性值输出

分类:

var properties = typeof(VPPair).GetProperties();
int column = 1;
int row = 1;
foreach (System.Reflection.PropertyInfo info in properties) 
{
	EI.Output_On_Cell<string>(EI.ExcelSheet, row, column, info.Name);
	column += 1;
}
//换行   
row += 1;
column = 1;
for (int i = 0; i &lt; dp.Count; i++) 
{
	foreach (System.Reflection.PropertyInfo info in dp[i].GetType().GetProperties()) 
	{
		string propertyName = info.Name;
		EI.Output_On_Cell
		<object>
			(EI.ExcelSheet, row,column, info.GetValue(dp[i]));
		column += 1;
	}
	//换行
	row += 1;
	column = 1;
}

songshizhao
最初发表2018/6/19 23:07:30 最近更新2018/6/19 23:07:30 2611
为此篇作品打分
10
   评论