I’m not certain from your wording whether you want the keys or the values. Either way, it’s pretty straightforward. Use either the Keys or Values property of the dictionary and the ToArray extension method.
var arrayOfAllKeys = yourDictionary.Keys.ToArray();
var arrayOfAllValues = yourDictionary.Values.ToArray();