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
For a hybrid dictionary, I use this:
List keys = new List(dictionary.Count); keys.AddRange(dictionary.Keys.Cast());