RuleCollection.CopyTo Method
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
'Declaration
Public Sub CopyTo ( _
    array As Rule(), _
    index As Integer _
)
'Usage
Dim instance As RuleCollection
Dim array As Rule()
Dim index As Integer
instance.CopyTo(array, index)
public void CopyTo(
    Rule[] array,
    int index
)
public:
void CopyTo(
    array<Rule^>^ array, 
    int index
)
member CopyTo : 
        array:Rule[] * 
        index:int -> unit 
public function CopyTo(
    array : Rule[], 
    index : int
)
Parameters
- array
 Type: array<Microsoft.SqlServer.Management.Smo.Rule[]
 An array of Rule objects.
- index
 Type: System.Int32
 An Int32 value that specifies the position in the collection from which to start the copy.