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

C#匿名类型访问从其他方法,第1张

概述我有一个ComboBox,其中填充使用匿名类型的集合: var results = (from row in data.Tables[0].AsEnumerable() select new { Id = row.Field<int>("id"), Name = row.Field<st 我有一个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);    }  }
总结

以上是内存溢出为你收集整理的C#匿名类型访问从其他方法全部内容,希望文章能够帮你解决C#匿名类型访问从其他方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1236021.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存