请问sharepoint2010中SPFieldLookupValueCollection的最大长度
也就是说,SPFieldLookupValueCollection中能储存多少个SPFieldLookupValue,谢谢。
[解决办法]
本质是 System.Collections.Generic.List<SPFieldLookupValue>,理论上可以有2147483647个(Int32.MaxValue),因为 List有个可以指定容量的构造 List<T>(Int32)