I only want the Keys and not the Values of a Dictionary.
I haven\'t been able to get any code to do this yet. Using another array proved to be too much work as I use
I often used this to get the key and value inside a dictionary: (VB.Net)
For Each kv As KeyValuePair(Of String, Integer) In layerList Next
(layerList is of type Dictionary(Of String, Integer))