This function initiates concatenation of the two given streams. If the streams are on different volumes,
this operation may take some time to complete.
Namespace: VcClientAssembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)
Syntax
C# |
---|
public static void Concatenate(
string sourceStream,
string destinationStream
) |
Visual Basic |
---|
Public Shared Sub Concatenate ( _
sourceStream As String, _
destinationStream As String _
) |
Visual C++ |
---|
public:
static void Concatenate(
String^ sourceStream,
String^ destinationStream
) |
Parameters
- sourceStream
- Type: String
Contents to be appended to the destinationStream.
- destinationStream
- Type: String
Destination stream for the concatenation. If this stream does not exist, it will be created.
See Also