📜  c# 对象列表中的属性列表 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:12.854000             🧑  作者: Mango

代码示例3
// List the properties.
// Use the class you want to study instead of Form1.

PropertyInfo[] property_infos = typeof(Form1).GetProperties(
    BindingFlags.FlattenHierarchy |
    BindingFlags.Instance |
    BindingFlags.NonPublic |
    BindingFlags.Public |
    BindingFlags.Static);