C#
是否提供了使用反射从头创建Enum
类型 的方法?
假设我有一个strings
:{"Single", "Married", "Divorced"}
的集合,我愿意在运行时构建以下枚举类型:
enum PersonStatus
{
Single, Married, Divorced
}
这有可能吗?
答案 0 :(得分:8)
使用Emit生成程序集等非常粗糙的事情。你怎么会这样使用这个枚举?什么是真正的目标?
编辑:既然我们知道你真正想做什么,this page建议您可以使用以下代码实现目标:
private void listViewComplex_CellEditStarting(object sender, CellEditEventArgs e)
{
// Ignore edit events for other columns
if (e.Column != this.columnThatYouWantToEdit)
return;
ComboBox cb = new ComboBox();
cb.Bounds = e.CellBounds;
cb.Font = ((ObjectListView)sender).Font;
cb.DropDownStyle = ComboBoxStyle.DropDownList;
cb.Items.AddRange(new String[] { "Single", "Married", "Divorced" });
cb.SelectedIndex = 0; // should select the entry that reflects the current value
e.Control = cb;
}
答案 1 :(得分:8)
C#是否提供了一种使用反射从头开始创建枚举类型的方法?
是的,这是可能的。如果要在运行时创建类型(包括枚举),可以使用Reflection.Emit来发出实际的MSIL代码。
以下是使用DefineEnum
方法实现该目标的concrete example。