.Net C#动态添加属性,并赋值 20
namespaceWebApplication1{publicpartialclassWebForm1:System.Web.UI.Page{protectedvoidP...
namespace WebApplication1
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!this.IsPostBack)
{
//需要动态添加的属性名称
string[] propertyList = new string[] { "f1", "f2", "f3", };
object o = new { };
//动态添加属性,并赋值
for (int i = 0; i < propertyList.Length; i++)
{
//TODO:???
//o.propertyList[i] = i;
}
//
//HttpContext.Current.Response.Write(o.f1+o.f2+o.f3);
}
}
}
}
谁能帮我补充上面的代码。谢谢 展开
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!this.IsPostBack)
{
//需要动态添加的属性名称
string[] propertyList = new string[] { "f1", "f2", "f3", };
object o = new { };
//动态添加属性,并赋值
for (int i = 0; i < propertyList.Length; i++)
{
//TODO:???
//o.propertyList[i] = i;
}
//
//HttpContext.Current.Response.Write(o.f1+o.f2+o.f3);
}
}
}
}
谁能帮我补充上面的代码。谢谢 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询