.NET Framework Class Library
ArrayList..::.Adapter Method

Creates an ArrayList wrapper for a specific IList.

Namespace:  System.Collections
Assembly:  mscorlib (in mscorlib.dll)
Syntax

Visual Basic (Declaration)
Public Shared Function Adapter ( _
    list As IList _
) As ArrayList
Visual Basic (Usage)
Dim list As IList
Dim returnValue As ArrayList

returnValue = ArrayList.Adapter(list)
C#
public static ArrayList Adapter(
    IList list
)
Visual C++
public:
static ArrayList^ Adapter(
    IList^ list
)
JScript
public static function Adapter(
    list : IList
) : ArrayList

Parameters

list
Type: System.Collections..::.IList
The IList to wrap.

Return Value

Type: System.Collections..::.ArrayList
The ArrayList wrapper around the IList.
Exceptions

ExceptionCondition
ArgumentNullException

list is nullNothingnullptra null reference (Nothing in Visual Basic).

Remarks

Adapter does not copy the contents of IList. Instead, it only creates an ArrayList wrapper around IList; therefore, changes to the IList also affect the ArrayList.

The ArrayList class provides generic Reverse, BinarySearch and Sort methods. This wrapper can be a means to use those methods on IList; however, performing these generic operations through the wrapper might be less efficient than operations applied directly on the IList.

This method is an O(1) operation.

Version Compatibility

In the .NET Framework version 1.0 and 1.1, calling the GetEnumerator(Int32, Int32) method overload on the ArrayList wrapper returned an enumerator that treated the second argument as an upper bound rather than as a count. In the .NET Framework 2.0 the second argument is correctly treated as a count.

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
See Also

Reference

Tags :


Page view tracker