【发布时间】:2015-07-16 05:06:55
【问题描述】:
谁能解释List<T> 在 C# 内部是如何工作的?
public List<ConvData> pdetails = new List<ConvData>();
它是如何存储的?当我们调用pdetails.Add();时究竟会发生什么
【问题讨论】:
-
您只需将 System.Collections 程序集反编译为 see the code
标签: c#