c# 3.0 - can we create array of hashtable in c#.Net? -
hashtable collection but,can create array of hashtable?
why not.
hashtable[] hashes = new hashtable[20];
but recomended use dictionary<tkey, tvalue>
instead of hashtables.
hashtable collection but,can create array of hashtable?
why not.
hashtable[] hashes = new hashtable[20];
but recomended use dictionary<tkey, tvalue>
instead of hashtables.
Comments
Post a Comment