0

I must to use 1.1 .NET version Framework (c#).

What can I use as Vector,List (object container)?

I saw that is not possible to use List or Vector

Ryan Gates
  • 4,501
  • 6
  • 50
  • 90
Safari
  • 11,437
  • 24
  • 91
  • 191

2 Answers2

6

ArrayList is what you're looking for.

Fls'Zen
  • 4,594
  • 1
  • 29
  • 37
1

You could use an ArrayList.

However, generics are not supported in .NET 1.1, so you would need to cast every time you access an item

Kenneth
  • 28,294
  • 6
  • 61
  • 84