D
Dmitrii PapaGerogio
Right now I am using Vector to store two values...something in the lines
of...
Vector v = new Vector();
v.Add("bob", 21);
v.Add("dan", 26);
v.Add("sally", 24);
but now using Vector which will only hold 2 values is not enough. Is
there something in the MS collections package that can store more than 2
values? Like...
v.Add("bob", 21, "1211 SouthLane Dr.", "active");
or do I need to create my own Collection class?
of...
Vector v = new Vector();
v.Add("bob", 21);
v.Add("dan", 26);
v.Add("sally", 24);
but now using Vector which will only hold 2 values is not enough. Is
there something in the MS collections package that can store more than 2
values? Like...
v.Add("bob", 21, "1211 SouthLane Dr.", "active");
or do I need to create my own Collection class?