G
Guest
SearchResultCollection resultCollection = LDAPsearcher.FindAll()
SearchResult[] resultArray
resultArray = new SearchResult[resultCollection.Count]
resultCollection.CopyTo(resultArray,0)
resultCollection.Count is
But many fewer than N items appear in resultArra
How can I get all N items to appear in resultArray?
SearchResult[] resultArray
resultArray = new SearchResult[resultCollection.Count]
resultCollection.CopyTo(resultArray,0)
resultCollection.Count is
But many fewer than N items appear in resultArra
How can I get all N items to appear in resultArray?