gpt4 book ai didi

c# - 如何获取数组中类的属性

转载 作者:行者123 更新时间:2023-11-30 13:15:10 25 4
gpt4 key购买 nike

我有一个具有以下结构的学生类(class):

    public sealed class Student
{
public string Name {get;set;}
public string RollNo {get;set;}
public string standard {get;set;}
public bool IsScholarshipped {get;set;}
public List<string> MobNumber {get;set;}
}

我怎样才能得到这些属性 学生像这样的数组中的类

     arr[0]=Name;
arr[1]=RollNo;
.
.
.
arr[4]=MobNumber

并且这些属性的类型在单独的数组中,例如

     arr2[0]=string;
arr2[1]=string;
.
.
.
arr2[4]=List<string> or IEnumerable

请用代码块解释它。

最佳答案

var type = model.GetType();
var properties = type.GetProperties(BindingFlags.Public | BindingFlags.Instance);

这将为您提供一组 PropertyInfo。然后您可以执行此操作以仅获取名称:

properties.Select(x => x.Name).ToArray();

关于c# - 如何获取数组中类的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13513024/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com