我有一堆C#函数,带有string,int和bool参数,用作数据输入接口。我希望能够为每种方法创建一个webform;每个字符串/ int的文本框和每个bool的复选框。
有没有办法自动化这个过程?
答案 0 :(得分:0)
您需要使用反射来检索方法的签名,然后根据其参数创建Web表单
// Create a container (panel for instance)
var parameters = methodInfo.GetParameters();
foreach (var parameter in parameters)
{
if (parameter.ParameterType == typeof(string))
{//Create a text box and add it to the panel}
else if (parameter.ParameterType == typeof(int))
{//Create a numeric box and add it to the panel}
...
}