获取传递给方法的对象的属性

本文关键字:对象 属性 方法 获取 | 更新日期: 2023-09-27 18:12:34

我试图将对象传递给方法,然后将对象的属性与数据表中的列名相匹配。我传递的对象类型是"IndividualDetails"。下面的代码工作得很好,但是有没有一种更通用的方法,可以传递任何类型的对象,而不必在代码中特别指定"IndividualDetails"类型。请查看typeof()行

我希望能够将属性映射到多个类型对象的数据表的列。

谢谢你的帮助。

List<IndividualDetails> individuals = new List<IndividualDetails>(); 
int[] index = ProcessX(ds.Tables["PersonsTable"], individuals);

private static int[] ProcessX(DataTable t, object p)
    {
        PropertyInfo[] Props = typeof(IndividualDetails).GetProperties(BindingFlags.Public | BindingFlags.Instance);

    Console.WriteLine("PROPERTIES:  "+p.GetType());
    for (int x = 0; x < Props.GetLength(0); x++)
    {
       Console.WriteLine(Propsx[x].Name);
    }
    Console.ReadLine();
        int[] pos = new int[t.Columns.Count]; 
        for (int x = 0; x < t.Columns.Count; x++)
        {
            pos[x] = -1; 
            for (int i = 0; i < Props.Length; i++)
            {
                if (t.Columns[x].ColumnName.CompareTo(Props[i].Name) == 0)
                {
                    pos[x] = i; 
                }
            }
        }
        return pos;
    }

获取传递给方法的对象的属性

如果我没看错你的代码,你应该可以这样做:

private static int[] ProcessX<T>(DataTable t, T obj)
    {
        PropertyInfo[] Props = obj.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance);

您应该将其设置为泛型方法,并使用Type引用来提取属性。所以不用这个:

private static int[] ProcessX(DataTable t, object p)
{
  PropertyInfo[] Props = typeof(IndividualDetails).GetProperties(BindingFlags.Public | BindingFlags.Instance);

这样做:

private static int[] ProcessX<T>(DataTable t, object p)
{
  PropertyInfo[] Props = typeof(T).GetProperties(BindingFlags.Public | BindingFlags.Instance);