Generic using alias

time to read 1 min | 62 words

Why can't I do this:

using Hashtable<TKey, TValue> = System.Collections.Generics.Dictionary<TKey, TValue>;

I can do it if I specify the generic parameters, but not while keeping the generic parameters free.