Is there something like List<String, Int32, Int32> (multidimensional generic list)
Posted
by Alex
on Stack Overflow
See other posts from Stack Overflow
or by Alex
Published on 2010-06-08T04:48:09Z
Indexed on
2010/06/08
4:52 UTC
Read the original article
Hit count: 335
I need something similar to List<String, Int32, Int32>
. List only supports one type at a time, and Dictionary only two at a time. Is there a clean way to do something like the above (a multidimensional generic list/collection)?
© Stack Overflow or respective owner