DataRowCollectionExtensionsAddRange(DataRowCollection, Object) Method
Creates and adds a DataRow object that has the specified values
to the source DataRowCollection.
Namespace: DevCase.Extensions.DataRowCollectionExtensionsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static IEnumerable<DataRow> AddRange(
this DataRowCollection sender,
Object[,] valueArrays
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function AddRange (
sender As DataRowCollection,
valueArrays As Object(,)
) As IEnumerable(Of DataRow)
Dim sender As DataRowCollection
Dim valueArrays As Object(,)
Dim returnValue As IEnumerable(Of DataRow)
returnValue = sender.AddRange(valueArrays)
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static IEnumerable<DataRow^>^ AddRange(
DataRowCollection^ sender,
array<Object^,2>^ valueArrays
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member AddRange :
sender : DataRowCollection *
valueArrays : Object[,] -> IEnumerable<DataRow>
No code example is currently available or this language may not be supported.
- sender DataRowCollection
-
The source DataRowCollection.
- valueArrays Object
-
The cell values for each DataRow.
IEnumerableDataRow
A collection with the newly created
IEnumerableT.
In Visual Basic and C#, you can call this method as an instance method on any object of type
DataRowCollection. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).