i know how to create a simple list like
List<UInt32> Sets = new List<UInt32>();
and i can add simple UInt32 objects to it
but now I want to create a such a List<..> of small arrays consisting of 4 elements each of UIn32 so that i can add
UInt32[] Sets = new UInt32[4]; objects to it
how can i do what i want?
List<UInt32> Sets = new List<UInt32>();
and i can add simple UInt32 objects to it
but now I want to create a such a List<..> of small arrays consisting of 4 elements each of UIn32 so that i can add
UInt32[] Sets = new UInt32[4]; objects to it
how can i do what i want?
Comment