RestoreFolderCollection.AddRange-Methode
Adds the elements of a ICollection to the end of the collection.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Syntax
'Declaration
Public Sub AddRange ( _
items As ICollection _
)
'Usage
Dim instance As RestoreFolderCollection
Dim items As ICollection
instance.AddRange(items)
public void AddRange(
ICollection items
)
public:
void AddRange(
ICollection^ items
)
member AddRange :
items:ICollection -> unit
public function AddRange(
items : ICollection
)
Parameter
- items
Typ: System.Collections.ICollection
The ICollection whose elements should be added at the end of the collection.
Ausnahmen
Ausnahme | Bedingung |
---|---|
ArgumentNullException | c is a null reference (Nothing in Visual Basic). |