FullTextIndexColumnCollection.CopyTo Method (FullTextIndexColumn , Int32)

 

Applies To: SQL Server 2016 Preview

Copies the collection objects to a one-dimensional array beginning at the index value specified.

Namespace:   Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

public void CopyTo(
    FullTextIndexColumn[] array,
    int index
)
public:
void CopyTo(
    array<FullTextIndexColumn^>^ array,
    int index
)
member CopyTo : 
        array:FullTextIndexColumn[] *
        index:int -> unit
Public Sub CopyTo (
    array As FullTextIndexColumn(),
    index As Integer
)

Parameters

  • index
    Type: System.Int32

    A Int32 value that specifies the index value at which to start the copy.

Examples

Legacy Code Example

Using Collections

See Also

FullTextIndexColumnCollection Class
Microsoft.SqlServer.Management.Smo Namespace

Return to top