BaseShadow.ElementConverter Delegate
Delegate used for deep copying of arrays. Converts the source element of an array into the target element.
Namespace: Microsoft.VisualStudio.TestTools.UnitTesting
Assembly: Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
Syntax
'Declaration
Protected Delegate Function ElementConverter ( _
source As Object _
) As Object
protected delegate Object ElementConverter(
Object source
)
protected delegate Object^ ElementConverter(
Object^ source
)
type ElementConverter =
delegate of
source:Object -> Object
JScript does not support delegates.
Parameters
source
Type: ObjectThe source element to deep copy.
Return Value
Type: Object
The target element of the deep copy.