C#匿名类型访问从其他方法

前端之家收集整理的这篇文章主要介绍了C#匿名类型访问从其他方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个ComboBox,其中填充使用匿名类型的集合:
var results = (from row in data.Tables[0].AsEnumerable()
               select new { 
                    Id = row.Field<int>("id"),Name = row.Field<string>("Name
               }).Distinct();

myComboBox.ValueMember = "Id";
myComboBox.DisplayMember = "Name";

foreach (var n in results)
{
    myComboBox.Items.Add(n);
}

然后,在ComboBox的SelectedIndexChanged方法中,我想检索所选项的Id,但是我无法访问“Id”属性,在myComboBox.SelectedItem中是所选对象.

private void myComboBox_SelectedIndexChanged(object sender,EventArgs e)
{
    if (myComboBox.SelectedItem != null)
    {
        var x = myComboBox.SelectedItem;

            ¿¿¿ ???
    }  
}

有任何想法吗?

解决方法

你也可以使用反射.
private void myComboBox_SelectedIndexChanged(object sender,EventArgs e)
{
    if (myComboBox.SelectedItem != null)
    {
        var x = myComboBox.SelectedItem;
        System.Type type = x.GetType();
        int id = (int)type.GetProperty("Id").GetValue(obj,null);
    }  
}
原文链接:https://www.f2er.com/csharp/96435.html

猜你在找的C#相关文章