Copies all values from one collection to another, overwriting existing values in the destination collection.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public static void Copy(
	PropertyValues from,
	PropertyValues to
)
Visual Basic
Public Shared Sub Copy ( _
	from As PropertyValues, _
	to As PropertyValues _
)
Visual C++
public:
static void Copy(
	PropertyValues^ from, 
	PropertyValues^ to
)

Parameters

from
Type: Simol..::..PropertyValues
Values collection to copy from.
to
Type: Simol..::..PropertyValues
Values collection to copy to.

Remarks

The ItemName is not copied.

See Also