控件中国网现已改版,您看到的是老版本网站的镜像,系统正在为您跳转到新网站首页,请稍候.......
中国最专业的商业控件资讯网产品咨询电话:023-67870900 023-67871946
产品咨询EMAIL:SALES@COMPONENTCN.COM

C#通过属性名称获取(读取)属性值的方法

作者:未知 出处:cnblog 2013年09月10日 阅读:

 之前在开发一个程序,希望能够通过属性名称读取出属性值,但是由于那时候不熟悉反射,所以并没有找到合适的方法,做了不少的重复性工作啊!

 
然后今天我再上网找了找,被我找到了,跟大家分享一下。
 
其实原理并不复杂,就是通过反射利用属性名称去获取属性值,以前对反射不熟悉,所以没想到啊~
 
不得不说反射是一种很强大的技术。。
 
下面给代码,希望能帮到有需要的人。
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace PropertyNameGetPropertyValueDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            Person ps = new Person();
            ps.Name = "CTZ";
            ps.Age = 21;
 
            Demo dm = new Demo();
            dm.Str = "String";
            dm.I = 1;
 
            Console.WriteLine(ps.GetValue("Name"));
            Console.WriteLine(ps.GetValue("Age"));
            Console.WriteLine(dm.GetValue("Str"));
            Console.WriteLine(dm.GetValue("I"));
        }
    }
 
    abstract class AbstractGetValue
    {
        public object GetValue(string propertyName)
        {
            return this.GetType().GetProperty(propertyName).GetValue(this, null);
        }
    }
 
    class Person : AbstractGetValue  
    {
        public string Name
        { get; set; }
 
        public int Age
        { get; set; }
    }
 
    class Demo : AbstractGetValue
    {
        public string Str
        { get; set; }
 
        public int I
        { get; set; }
    }
}
 
如果觉得上面比较复杂了,可以看下面的简化版
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace GetValue
{
    class Program
    {
        static void Main(string[] args)
        {
            Person ps = new Person();
            ps.Name = "CTZ";
            ps.Age = 21;
 
            Console.WriteLine(ps.GetValue("Name"));
            Console.WriteLine(ps.GetValue("Age"));
        }
    }
 
    class Person
    {
        public string Name
        { get; set; }
 
        public int Age
        { get; set; }
 
        public object GetValue(string propertyName)
        {
            return this.GetType().GetProperty(propertyName).GetValue(this, null);
        }
    }
}
 
实质语句只有一句:
 
this.GetType().GetProperty(propertyName).GetValue(this, null);其他可以忽略。。
 

热推产品

  • ActiveReport... 强大的.NET报表设计、浏览、打印、转换控件,可以同时用于WindowsForms谀坔攀戀Forms平台下......
  • AnyChart AnyChart使你可以创建出绚丽的交互式的Flash和HTML5的图表和仪表控件。可以用于仪表盘的创......
首页 | 新闻中心 | 产品中心 | 技术文档 | 友情连接 | 关于磐岩 | 技术支持中心 | 联系我们 | 帮助中心 Copyright-2006 ComponentCN.com all rights reserved.重庆磐岩科技有限公司(控件中国网) 版权所有 电话:023 - 67870900 传真:023 - 67870270 产品咨询:sales@componentcn.com 渝ICP备12000264号 法律顾问:元炳律师事务所 重庆市江北区塔坪36号维丰创意绿苑A座28-5 邮编:400020
在线客服
在线客服系统
在线客服
在线客服系统