Re: How to use List<T> with 2 dimensions (with the 2nd one variable)?



On Jun 12, 11:15 am, Rex <RexForum4...@xxxxxxxxxxxxxxxxxx> wrote:
Hi All, I need to create a 2-dimensional group of values, the first
dimension having 8 rows, while the 2nd is variable. I was thinking of
using List<T>, but MAYBE List<T> is not the way to go (I prefer
Type-safe but it is not truly necessary). So if not List<T>, what do
you recommend I use?
Thanks!
Rex

I would use List<T> where T is a user defined class that has two
properties.

.