ModelDataExtensionsCopyToTSource, TTarget Method (TSource, TTarget) | 
 
            Copies properties from the source type to the target type using default mapping rule - mapping by name.
            
 
    Namespace: 
   Dundas.BI.WebApi.Models
    Assembly:
   Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxpublic static void CopyTo<TSource, TTarget>(
	this TSource source,
	TTarget target
)
<ExtensionAttribute>
Public Shared Sub CopyTo(Of TSource, TTarget) ( 
	source As TSource,
	target As TTarget
)
public:
[ExtensionAttribute]
generic<typename TSource, typename TTarget>
static void CopyTo(
	TSource source, 
	TTarget target
)
[<ExtensionAttribute>]
static member CopyTo : 
        source : 'TSource * 
        target : 'TTarget -> unit 
Parameters
- source
 - Type: TSource
The source object - object which properties will be copied over the
            target. - target
 - Type: TTarget
The target object - object which properties will be copied on to. 
Type Parameters
- TSource
 - The type of the source.
 - TTarget
 - The type of the target.
 
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
See Also