Aqui lo tienes:
Código:
// Inicializamos la HashTable
Hashtable hs = new Hashtable();
hs.Add("Hola", "Pepe");
hs.Add("Adios", "Jose");
hs.Add("Como", "Estas");
// Definimos el array con el tamaño=cantidad de elementos del Hash
string[] strDemo = new string[hs.Count];
// Recorremos la HashTable insertando unicamente el elemento 'key'
int i = 0;
foreach (string key in hs.Keys)
{
strDemo[i++] = key;
}
Espero que te sirva. Si tienes alguna duda sobre el código, pregunta :)