精易论坛
标题:
C#高级编程 动态数组
[打印本页]
作者:
stillness
时间:
2012-11-30 20:25
标题:
C#高级编程 动态数组
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ArrayList
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
System.Collections.ArrayList A = new System.Collections.ArrayList();
for (int i = 1; i <= 88; i++)
{
A.Add(i);
}
this.Text = (A.Count).ToString();
}
}
}
复制代码
1.png
(18.02 KB, 下载次数: 0)
下载附件
2012-11-30 20:25 上传
作者:
记忆是座荒岛
时间:
2012-11-30 20:28
刷啊! 用力刷啊!!!
欢迎光临 精易论坛 (https://125.confly.eu.org/)
Powered by Discuz! X3.4