संपादित करें

इसके माध्यम से साझा किया गया


OdbcParameterCollection.AddRange Method

Definition

Adds elements to the end of the OdbcParameterCollection.

Overloads

AddRange(Array)

Adds an array of values to the end of the OdbcParameterCollection.

AddRange(OdbcParameter[])

Adds an array of OdbcParameter values to the end of the OdbcParameterCollection.

AddRange(Array)

Source:
OdbcParameterCollectionHelper.cs
Source:
OdbcParameterCollectionHelper.cs
Source:
OdbcParameterCollectionHelper.cs
Source:
OdbcParameterCollectionHelper.cs

Adds an array of values to the end of the OdbcParameterCollection.

public:
 override void AddRange(Array ^ values);
public override void AddRange (Array values);
override this.AddRange : Array -> unit
Public Overrides Sub AddRange (values As Array)

Parameters

values
Array

The Array values to add.

See also

Applies to

AddRange(OdbcParameter[])

Source:
OdbcParameterCollection.cs
Source:
OdbcParameterCollection.cs
Source:
OdbcParameterCollection.cs
Source:
OdbcParameterCollection.cs

Adds an array of OdbcParameter values to the end of the OdbcParameterCollection.

public:
 void AddRange(cli::array <System::Data::Odbc::OdbcParameter ^> ^ values);
public void AddRange (System.Data.Odbc.OdbcParameter[] values);
override this.AddRange : System.Data.Odbc.OdbcParameter[] -> unit
Public Sub AddRange (values As OdbcParameter())

Parameters

values
OdbcParameter[]

An array of OdbcParameter objects to add to the collection.

See also

Applies to