How to Declare an Array of Generic Dictionaries in C#?
Posted
by Nave
on Stack Overflow
See other posts from Stack Overflow
or by Nave
Published on 2010-05-29T06:09:59Z
Indexed on
2010/05/29
6:52 UTC
Read the original article
Hit count: 300
I want to create an array of Dictionaries. But the array size is unknown. For integer, i used List to obtain the integer array of unknown size. But in the case of Dictionary, am not able to create a list of Dictionary. Is thr any wayz by which this can be done? Dictionary(int, String) paramList=null;
I am want to create the array of paramList(above). I am using C Sharp.
© Stack Overflow or respective owner