How do you place a null value into a sorted collection?
I need to place a null value into my collection and then the collection will be sorted based on the keys. ONe of those keys will have a null value.
Please help.
Thanks,
Rey
Printable View
How do you place a null value into a sorted collection?
I need to place a null value into my collection and then the collection will be sorted based on the keys. ONe of those keys will have a null value.
Please help.
Thanks,
Rey
Well at least you can have the null there, but sorting could be a problem with that null
Code:Dim a As New Collection
a.Add 1, "B"
a.Add Null, "A"
a.Add 2, "C"