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
To get list of all keys
using System.Linq; List myKeys = myDict.Keys.ToList();
System.Linq is supported in .Net framework 3.5 or above. See the below links if you face any issue in using System.Linq
Visual Studio Does not recognize System.Linq
System.Linq Namespace