如何在C#中定义动态的数组结构啊??

来源:互联网 发布:linux内存管理浅析 编辑:程序博客网 时间:2024/04/30 07:00

如何在C#中定义动态的数组结构啊??

比如 public struct  mystruct  

{

public string word;

public int  length;

}

类似这样的结构,可以动态增加的结构数组?