SqliteParameterCollection.CopyTo Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CopyTo(SqliteParameter[], Int32) |
Copies the collection to an array of parameters. |
CopyTo(Array, Int32) |
Copies the collection to an array of parameters. |
CopyTo(SqliteParameter[], Int32)
Copies the collection to an array of parameters.
public virtual void CopyTo (Microsoft.Data.Sqlite.SqliteParameter[] array, int index);
override this.CopyTo : Microsoft.Data.Sqlite.SqliteParameter[] * int -> unit
Public Overridable Sub CopyTo (array As SqliteParameter(), index As Integer)
Parameters
- array
- SqliteParameter[]
The array into which the parameters are copied.
- index
- Int32
The zero-based index to which the parameters are copied.
Applies to
CopyTo(Array, Int32)
Copies the collection to an array of parameters.
public override void CopyTo (Array array, int index);
override this.CopyTo : Array * int -> unit
Public Overrides Sub CopyTo (array As Array, index As Integer)
Parameters
- array
- Array
The array into which the parameters are copied. Must be an array of SqliteParameter objects.
- index
- Int32
The zero-based index to which the parameters are copied.