时间:2021-05-20
之前在开发一个程序,希望能够通过属性名称读取出属性值,但是由于那时候不熟悉反射,所以并没有找到合适的方法,做了不少的重复性工作啊!
然后今天我再上网找了找,被我找到了,跟大家分享一下。
其实原理并不复杂,就是通过反射利用属性名称去获取属性值,以前对反射不熟悉,所以没想到啊~
不得不说反射是一种很强大的技术。。
下面给代码,希望能帮到有需要的人。
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);
其他可以忽略。。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#实现读取匿名对象属性值的方法。分享给大家供大家参考,具体如下:通过new出匿名对象,可以直接调用该匿名对象的属性名,获取属性值。varobjU
本文实例讲述了C#通过属性名字符串获取、设置对象属性值操作.分享给大家供大家参考,具体如下:#通过反射获取对象属性值并设置属性值0、定义一个类publiccla
本文实例讲述了C#编程获取实体类属性名和值的方法。分享给大家供大家参考,具体如下:遍历获得一个实体类的所有属性名,以及该类的所有属性的值//先定义一个类:pub
一、考虑安全访问范围内的属性,没有权限访问到的属性不读取/***根据属性名获取属性值**@paramfieldName*@paramobject*@return
.attr(attributeName) attributeName:需要获取属性的名称。 获取匹配集中第一个元素的属性值。1.6中attr返回属性的值为u