首页 > 开发 > 综合 > 正文

那数组存入application,再利用循环读出来

2024-07-21 02:29:30
字体:
来源:转载
供稿:网友

  private void button2_click(object sender, system.eventargs e)
  {
   string[] a=new string[2];
   a[0]="aa";
   a[1]="bb";
   application.add("a",a);//将值赋给 application["a"]
  }

  private void button3_click(object sender, system.eventargs e)
  {
   this.listbox1.items.clear();//清除列表里的值
   string[] b=(string[])application["a"];//将值赋给数组 b
    for (int i=0;i<b.length;i++)
    {
    this.listbox1.items.add(b[i]);
    }
  }

  • 本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表