C# 获得对象属性和属性值 C#利用反射遍历对象的属性和属性值


http://sh2015yao.iteye.com/blog/1490161


实体类

C#代码   收藏代码
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5.   
  6. namespace WindowsFormsApplication1  
  7. {  
  8.     public class Contract  
  9.     {  
  10.         public string employeename { getset; }  
  11.     }  
  12. }  

 

遍历属性和属性值

C#代码   收藏代码
  1. public void EachProperties()  
  2.        {  
  3.            Contract contract = new Contract { employeename = "Rikas" };  
  4.            Type type = contract.GetType();  
  5.            System.Reflection.PropertyInfo[] ps = type.GetProperties();  
  6.            foreach (PropertyInfo i in ps)  
  7.            {  
  8.                object obj = i.GetValue(contract, null);  
  9.                string name = i.Name;  
  10.            }  
  11.        }  

当然还有判断属性类型的,我没有找到更好的方法判断一个累中的属性的类型是不是另一个类,如果有其他方法欢迎评论

 

C#代码   收藏代码
  1. public void EachProperties()  
  2.         {  
  3.             Contract contract = new Contract { employeename = "Rikas" };  
  4.             Type type = contract.GetType();  
  5.             System.Reflection.PropertyInfo[] ps = type.GetProperties();  
  6.             foreach (PropertyInfo i in ps)  
  7.             {  
  8.                 if (i.PropertyType == typeof(string))//属性的类型判断  
  9.                 {  
  10.                     object obj = i.GetValue(contract, null);  
  11.                     string name = i.Name;  
  12.                 }  
  13.             }  
  14.         }  



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值