当前位置: 代码迷 >> SharePoint >> 请教sharepoint2010中SPFieldLookupValueCollection的最大长度
  详细解决方案

请教sharepoint2010中SPFieldLookupValueCollection的最大长度

热度:107   发布时间:2016-05-02 07:24:10.0
请问sharepoint2010中SPFieldLookupValueCollection的最大长度
也就是说,SPFieldLookupValueCollection中能储存多少个SPFieldLookupValue,谢谢。

------解决方案--------------------
本质是   System.Collections.Generic.List<SPFieldLookupValue>,理论上可以有2147483647个(Int32.MaxValue),因为 List有个可以指定容量的构造 List<T>(Int32)