Returns an ArrayList whose elements are copies of the specified value.
[Visual Basic] Public Shared Function Repeat( _ ByVal value As Object, _ ByVal count As Integer _ ) As ArrayList [C#] public static ArrayList Repeat( object value, int count ); [C++] public: static ArrayList* Repeat( Object* value, int count ); [JScript] public static function Repeat( value : Object, count : int ) : ArrayList;
-or-
a null reference (in Visual Basic Nothing).
An ArrayList with count number of elements, all of which are copies of value.
ArrayList Class | ArrayList Members | System.Collections Namespace