当前位置:  开发笔记 > 编程语言 > 正文

如何使用C#中的变量调用对象的属性,例如customer.&fieldName

如何解决《如何使用C#中的变量调用对象的属性,例如customer.&fieldName》经验,为你挑选了1个好方法。

在C#中,有一种方法可以使用变量调用对象的属性,如下所示:

string fieldName = "FirstName";
Console.WriteLine(customer.&fieldName);

回答:

非常好,感谢快速解答,这就是我想要做的:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;

namespace TestLinqFieldIndex
{
    class Program
    {
        static void Main(string[] args)
        {
            List customers = new List();
            customers.Add(new Customer { ID = 1, FirstName = "Jim", LastName = "Smith" });
            customers.Add(new Customer { ID = 2, FirstName = "Joe", LastName = "Douglas" });
            customers.Add(new Customer { ID = 3, FirstName = "Jane", LastName = "Anders" });

            var customer = (from c in customers
                            where c.ID == 2
                            select c).SingleOrDefault();

            string[] fieldNames = { "FirstName", "LastName" };
            foreach (string fieldName in fieldNames)
            {
                Console.WriteLine("The value of {0} is {1}.", fieldName, customer.GetPropertyValue(fieldName));
            }

            Console.ReadLine();
        }
    }

    public class Customer
    {
        public int ID { get; set; }
        public string FirstName { get; set; }
        public string LastName { get; set; }

        public string GetPropertyValue(string fieldName)
        {
            PropertyInfo prop = typeof(Customer).GetProperty(fieldName);
            return prop.GetValue(this, null).ToString();
        }

    }
}

Frederik Ghe.. 6

你可以用反射做到这一点.

PropertyInfo prop = typeof(Customer).GetProperty ("FirstName");
Console.WriteLine (prop.GetValue (customer, null));

甚至可以检索私有财产的价值.为此,您必须查看GetProperty接受绑定标志的重载方法.



1> Frederik Ghe..:

你可以用反射做到这一点.

PropertyInfo prop = typeof(Customer).GetProperty ("FirstName");
Console.WriteLine (prop.GetValue (customer, null));

甚至可以检索私有财产的价值.为此,您必须查看GetProperty接受绑定标志的重载方法.

推荐阅读
php
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有