문제

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

도움이 되었습니까?

해결책

ArrayList is what you're looking for.

다른 팁

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top