遍历结构体内部元素和值(Name and Value)
程序员文章站
2022-04-08 18:45:09
代码: DataStruct.MessageStruct ms = new DataStruct.MessageStruct();//实例化结构体 //遍历结构体 foreach (System.Reflection.PropertyInfo p in ms.GetType().GetPropert ......
代码:
datastruct.messagestruct ms = new datastruct.messagestruct();//实例化结构体
//遍历结构体
foreach (system.reflection.propertyinfo p in ms.gettype().getproperties())
{
this.rtbsend.text += p.name + "=" + p.getvalue(ms)+"\r\n";
}
运行结果:
上一篇: IDEA@Data注释使用
下一篇: Python函数学习笔记