[C#]
void Copy(XPoint[] source, double[] destination, int length)
void Copy(XPoint[] source, int sourceIndex, double[] destination, int destinationIndex, int length)
void Copy(double[] source, XPoint[] destination, int length)
void Copy(double[] source, int sourceIndex, XPoint[] destination, int destinationIndex, int length)
[Visual
Basic]
Sub Copy(source() As XPoint, destination() As Double, length As Integer)
Sub Copy(source() As XPoint, sourceIndex As Integer, destination() As Double, destinationIndex As Integer, length As Integer)
Sub Copy(source() As Double, destination() As XPoint, length As Integer)
Sub Copy(source() As Double, sourceIndex As Integer, destination() As XPoint, destinationIndex As Integer, length As Integer)
|
|
|