System.Collections.Specialized.NameObjectCollectionBase has two similar properties:
string[] AllKeys
NameObjectCollectionBase.KeyCollection Keys
Do they provide different sets of data? When would I want to use one over the other?
|
2
|
System.Collections.Specialized.NameObjectCollectionBase has two similar properties:
Do they provide different sets of data? When would I want to use one over the other?
|
||
|
|
|
|
This little test program shows the difference in behavior:
The output is:
|
||||||||||
|
|
|
there however is the added benefit that you would be able to do operations on your collection using a foreach or a LINQ statement on the return of AllKeys(). Since its a copy, you won't get errors modifying a list currently being enumerated. |
||
|
|
|
|
According to MSDN's documentation, when using AllKeys, it's O(n) to retrieve all the values, whereas when using Keys it's O(1).
So basically, it seems that Keys has better performance. |
||
|
|