Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
7answers
115 views

Keyed Collection in Python?

Is there any equivalent to KeyedCollection in Python, i.e. a set where the elements have (or dynamically generate) their own keys? i.e. the goal here is to avoid storing the key in two places, and ...
1
vote
2answers
47 views

What is the most efficient way to obtain the list of keys from a KeyedCollection?

I am looking for a way that is as efficient as the Keys property (of type KeyCollection) of a generic dictionary. Using a Linq select statement would work, but it would iterate over the whole ...
1
vote
5answers
388 views

How do you sort a KeyedCollection<TKey, TItem>?

Basically I've got a KeyedCollection<string, CustomNode>, and I want to be able to sort the collection by the key (or preferably with a custom comparer). If this isn't possible, can someone ...
1
vote
5answers
1k views

Fastest way to copy a KeyedCollection

I'm working on a C# object copy constructor, part of which involves copying the contents of a KeyedCollection into a new KeyedCollection. This is what I have implemented currently: class ...
0
votes
2answers
69 views

KeyedCollection is a collection of what?

I want to create a method that would iterate through a keyed collection. I want to make sure that my method support iteration of any collection that extends the KeyedCollection<string, ...
0
votes
3answers
416 views

Adding and retrieving from a KeyedCollection

I want to use a KeyedCollection to store a class against a string key value. I have the following code: public class MyClass { public string Key; public string Test; } public class ...
0
votes
2answers
1k views

Keyed ObservableCollection in Silverlight

I want to implement a keyed observable collection in Silverlight, that will store unique objects based on a property called Name. One way of doing it is to use the ObservableCollectionEx (samples in ...