Frage

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

War es hilfreich?

Lösung

ArrayList is what you're looking for.

Andere Tipps

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top