For some reason Visual Studio has every property and method of ArrayList except the Item property(it will not appear in the auto complete box). It will not compile when I use it anyway.
For some reason Visual Studio has every property and method of ArrayList except the
Share
The
Itemproperty in C# is accessible through the square brackets operator. For example, if the documentation forList<T>says that a class exposes propertyItemthat takes anintand returns aT. You can use it like this: