我有这个用户控件:
public static Type typCreate;
LoadUserControl<T>()
{
typCreate = typeof( T );
}
protected void ButtonCommand( object sender, CommandEventArgs e )
{
x.Execute<typCreate>();
}
考虑到该方法LoadUserControl
是主要方法并且事件ButtonCommand
是由 UserControl 上的按钮触发的,我试图在事件上调用此方法:
class x
{
public static T Execute<T>() { ... }
}
VS 给出的错误是 typeCreate 是一个“字段”,但用作“类型”。
我怎样才能正确地完成这项工作?
提前致谢。