码迷,mamicode.com
首页 > 其他好文 > 详细

遍历结构体中的变量

时间:2016-03-18 00:29:20      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

public struct Site
  {
  [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 30)]
  public string Country;   
  [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 10)]
  public string StationNumber;   
  [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 20)]
  public string RadarType;   
    
  public int LongitudeValue;   
  public short MangFreq; 
  }


for ()
{
//遍历结构体中的变量
}
 
 
 
遍历结构体成员名称
foreach (System.Reflection.FieldInfo fieldInfo in typeof(Site).GetFields())
{
    System.Console.Write(fieldInfo.Name);
}
C# code 
 
 ?
1
2
3
4
foreach  (System.Reflection.FieldInfo fieldInfo  in  typeof (Site).GetFields())
{
     System.Console.Write(fieldInfo.Name);
}
遍历结构体实例成员值
foreach (System.Reflection.FieldInfo fieldInfo in typeof(Site).GetFields())
{
  System.Console.Write(fieldInfo.GetValue(site对象实例).ToString());
}
 

遍历结构体中的变量

标签:

原文地址:http://www.cnblogs.com/gosteps/p/5290017.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!