Version

AddRange Method (ColumnBaseCollection)

Adds an IEnumerable of ColumnBase to the collection.
Syntax
'Declaration
 
Public Sub AddRange( _
   ByVal columns As IEnumerable(Of ColumnBase) _
) 
public void AddRange( 
   IEnumerable<ColumnBase> columns
)

Parameters

columns
The columns to be added to this collection
Remarks
This method is designed to be used when adding a large number of columns all at once. In that case it performs a lot better than calling the Add method individually for each column.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also