Copy elements from another StringList into this list

Namespace: Perforce.P4
Assembly: p4api.net (in p4api.net.dll) Version: 2017.3.160.836 (2017.3.160.0836)

Syntax

C#
public void Copy(
	StringList src,
	int destIdx,
	int cnt
)
Visual Basic
Public Sub Copy ( _
	src As StringList, _
	destIdx As Integer, _
	cnt As Integer _
)
Visual C++
public:
void Copy(
	StringList^ src, 
	int destIdx, 
	int cnt
)

Parameters

src
Type: Perforce.P4..::..StringList
The source StringList
destIdx
Type: System..::..Int32
The index of the first element copied in the destination array
cnt
Type: System..::..Int32
How many elements to copy

See Also