C#类的属性遍历及属性值获取1、定义⼀个类
public class Person
{
public string Name { get; set; }
public int ID { get; set; }
}
2、获取属性
⽅法⼀、定义⼀个类的对象获取
Person p = new Person();
foreach (System.Reflection.PropertyInfo info in p.GetType().GetProperties())
{
Console.WriteLine(info.Name);
}
⽅法⼆、通过类获取
var properties = typeof(Person).GetProperties();
foreach (System.Reflection.PropertyInfo info in properties)
{
Console.WriteLine(info.Name);
}
3、通过属性名获取对象属性值
typeof的用法p.Name = "张三";
var name = p.GetType().GetProperty("Name").GetValue(p, null);
Console.WriteLine(name);
4、完整代码及结果显⽰
var properties = typeof(Person).GetProperties();
foreach (System.Reflection.PropertyInfo info in properties)
{
Console.WriteLine(info.Name);
}
Console.WriteLine("另⼀种遍历属性的⽅法:");
Person p = new Person();
foreach (System.Reflection.PropertyInfo info in p.GetType().GetProperties())
{
Console.WriteLine(info.Name);
}
Console.WriteLine("通过属性值获取属性:");
p.Name = "张三";
var name = p.GetType().GetProperty("Name").GetValue(p, null);
Console.WriteLine(name);
Console.ReadLine();
Type t = tc.GetType();//获得该类的Type
//再⽤Type.GetProperties获得PropertyInfo[],然后就可以⽤foreach 遍历了
foreach (PropertyInfo pi in t.GetProperties
{
object value1 = pi.GetValue(tc, null));//⽤pi.GetValue获得值
string name = pi.Name;//获得属性的名字,后⾯就可以根据名字判断来进⾏些⾃⼰想要的操作//获得属性的,进⾏判断然后进⾏以后的操作,例如判断获得的属性是
if(value1.GetType() == typeof(int))
{
//进⾏你想要的操作
}
}
public int Pid
{
get { return pid; }
set { pid = value; }
}
//****************
public void InitialProperty()//初始化设定
{
System.Reflection.PropertyInfo[] properties = this.GetType().GetProperties();            foreach(var v in properties)
{
string type= v.PropertyType.Name;
if (type=="String")
{
v.SetValue(this,"456",null);
}
else if(type=="Bitmap")
{
v.SetValue(this, new Bitmap(Image.FromFile("1.png")), null);
}
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。