如何迭代 C# 类 (.NET 2.0) 的属性?
假设我有一个类:
public class TestClass
{
public String Str1;
public String Str2;
private String Str3;
public String Str4 { get { return Str3; } }
public TestClass()
{
Str1 = Str2 = Str 3 = "Test String";
}
}
有没有一种方法(C# .NET 2)可以迭代“TestClass”类并打印出公共变量和属性?
记住.Net2
谢谢
Say I have a class:
public class TestClass
{
public String Str1;
public String Str2;
private String Str3;
public String Str4 { get { return Str3; } }
public TestClass()
{
Str1 = Str2 = Str 3 = "Test String";
}
}
Is there a way (C# .NET 2) to iterate through the Class 'TestClass' and print out public variables and attributes?
Remeber .Net2
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
迭代公共实例属性:
迭代公共实例字段:
如果您还想包含非公共属性,请将
BindingFlags.NonPublic
添加到GetProperties
和 <代码>GetFields。To iterate through public instance properties:
To iterate through public instance fields:
If you also want to include non-public properties, add
BindingFlags.NonPublic
to the arguments ofGetProperties
andGetFields
.您可以使用反射来执行此操作。
这是一篇文章,它使用反射来实现可扩展性。
You can do this using reflection.
Here is an article that uses reflection for extensibility.
您可以使用反射
You can to use reflection
要获取类型的属性,我们将使用:
要获取类定义的属性,我们将使用:
传递的布尔标志是继承标志,是否在继承链中搜索。
要获取属性的属性,我们将使用:
使用上面给出的哈佛代码:
To get Properties of a Type we will use:
To get Attributes defined of a Class we will use:
Boolean flag passed is the Inheritance flag, whether to search in inheritance chain or not.
To get attributes of a property we will use:
Using Harvard Code given above: