摘要: 数组:必须连续的存储空间,对于删除数据需要移动数据元素集合:对于值类型的数据拆箱时要浪费大量的计算时间,易存在数据类型安全的问题泛型:通常情况都建议使用泛型集合,这样可以获得类型安全的优点而不需要直接从基集合类型派生并实现类型的特定成员。namespace WindowsFormsApplication1{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } List arryList = new Li... 阅读全文
posted @ 2014-02-15 13:27 心绪如泥 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 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 WindowsFormsApplication1{ public partial class Form1 : Form { public Form1() { Init... 阅读全文
posted @ 2014-02-15 09:45 心绪如泥 阅读(171) 评论(0) 推荐(0) 编辑