我是靠谱客的博主 愉快山水,最近开发中收集的这篇文章主要介绍C# 获取类中所有的属性,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

通常用到的方法是通过反射进行获取:

例如有如下Student类:

public class Student
{
private string id;
public string Id { get { return id; } set { id = value; } }
private string name;
public string Name { get { return name; } set { name = value; } }
private string age;
public string Age { get { return age; } set { age = value; } }
}

需要添加的命名空间:

using System.Reflection;

具体的反射方法如下所示:

private PropertyInfo[] GetPropertyInfoArray()
{
PropertyInfo[] props = null;
try
{
Type type = typeof(EricSunApp.Student);
object obj = Activator.CreateInstance(type);
props = type.GetProperties(BindingFlags.Public | BindingFlags.Instance);
}
catch (Exception ex)
{ }
return props;
}

之后就是对返回来的数组进行遍历了。

 

获取一个类中所有的字段也是类似的方法:

 

可以再上网查一下关于反射的更多知识。。。。

 

 

最后

以上就是愉快山水为你收集整理的C# 获取类中所有的属性的全部内容,希望文章能够帮你解决C# 获取类中所有的属性所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部