RoleMemberCollection.CopyTo Method (Array, Int32)

 

Applies To: SQL Server (starting with 2016)

Copies the elements of the collection to an Array, starting at a particular Array index.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)

Syntax

public void CopyTo(
    Array array,
    int index
)
public:
virtual void CopyTo(
    Array^ array,
    int index
) sealed
abstract CopyTo : 
        array:Array *
        index:int -> unit
override CopyTo : 
        array:Array *
        index:int -> unit
Public Sub CopyTo (
    array As Array,
    index As Integer
)

Parameters

  • array
    Type: System.Array

    The one-dimensional Array that is the destination of the elements copied from the collection.

  • index
    Type: System.Int32

    The zero-based index in array at which copying begins.

Implements

ICollection.CopyTo(Array, Int32)

See Also

RoleMemberCollection Class
Microsoft.AnalysisServices Namespace

Return to top