NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ArrayList.FixedSize (ArrayList)

Returns an ArrayList wrapper with a fixed size.

[Visual Basic]
Overloads Public Shared Function FixedSize( _
   ByVal list As ArrayList _
) As ArrayList
[C#]
public static ArrayList FixedSize(
   ArrayList list
);
[C++]
public: static ArrayList* FixedSize(
   ArrayList* list
);
[JScript]
public static function FixedSize(
   list : ArrayList
) : ArrayList;

Parameters

list
The ArrayList to wrap.

Return Value

An ArrayList wrapper with a fixed size.

Exceptions

Exception Type Condition
ArgumentNullException list is a null reference (in Visual Basic Nothing).

Remarks

This wrapper can be used to prevent additions to and deletions from the ArrayList. The elements can still be modified or replaced.

See Also

ArrayList Class | ArrayList Members | System.Collections Namespace | ArrayList.FixedSize Overload List