Copies data from the source Row to the destination Row

Namespace: ScopeRuntime
Assembly: ScopeRuntime (in ScopeRuntime.exe) Version: 1.0.0.0 (10.2.2.0)

Syntax

C#
[ObsoleteAttribute("use  source.CopyTo(destination)")]
public static void Copy(
	Row source,
	Row destination
)
Visual Basic
<ObsoleteAttribute("use  source.CopyTo(destination)")> _
Public Shared Sub Copy ( _
	source As Row, _
	destination As Row _
)
Visual C++
[ObsoleteAttribute(L"use  source.CopyTo(destination)")]
public:
static void Copy(
	Row^ source, 
	Row^ destination
)

Parameters

source
Type: ScopeRuntime..::..Row
Row containing the data
destination
Type: ScopeRuntime..::..Row
Row where data is to be copied

See Also