Well, all you have to do is pass an array via a parm...set it via a method...or provide a Set on the property:Via a Method
Private Sub SetMyArray(ByVal items() As Integer)
'-- Do whatever you want with the passed over array. Set a property, use the array, etc.
End Sub
Via a Property
Private _MyItems As Integer()
Public Property MyItems() As Integer()
Get
Return _MyItems
End Get
Set(ByVal value As Integer())
_MyItems = value
End Set
End Property