Top "Sortedlist" questions

SortedList Represents a collection of key/value pairs that are sorted by the keys and are accessible by key and by index.

lists and arrays in VBA

I am extremely new at writing in VB.NET, and I did not even realise that there was a significant …

arrays vb.net list vba sortedlist
Get random sample from list while maintaining ordering of items?

I have a sorted list, let say: (its not really just numbers, its a list of objects that are sorted …

python list random sortedlist
How to Sort Date in descending order From Arraylist Date in android?

I have an ArrayList which stores Dates and I sorted them in descending order. Now I want to display them …

java android date arraylist sortedlist
What's the difference between SortedList and SortedDictionary?

Is there any real practical difference between a SortedList<TKey,TValue> and a SortedDictionary<TKey,TValue>? …

c# .net generics sortedlist sorteddictionary
C# Sortable collection which allows duplicate keys

I am writing a program to set a sequence in which various objects will appear in report. The sequence is …

c# .net collections sortedlist
SortedList<>, SortedDictionary<> and Dictionary<>

I find that SortedList<TKey, TValue> SortedDictionary<TKey, TValue> and Dictionary<TKey, TValue> implement …

c# generics dictionary sortedlist sorteddictionary
When to use a SortedList<TKey, TValue> over a SortedDictionary<TKey, TValue>?

This may appear to be a duplicate of this question, which asks "What’s the difference between SortedList and SortedDictionary?" …

c# .net sortedlist sorteddictionary
How can I resolve "Item has already been added. Key in dictionary:" errors?

I have an application which got hung up when I tried to add items to it. When I checked the …

c# dictionary exception sortedlist
How to loop through a SortedList, getting both the key and the value

The following code loops through a list and gets the values, but how would I write a similar statement that …

c# sortedlist
c# How to sort a sorted list by its value column

i have a generic sorted list "results" with key = some filename and value = boolean. I would like to sort the …

c# sorting sortedlist