[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Führt eine Umwandlung eines Objektes in einen Zieldatentyp durch.

Namespace: DynamicNode.Core
Assembly: DNCore (in DNCore.dll) Version: 1.4.4679.19807 (1.4.0.0)

Syntax

C#
Object DoConversion(
	Object o,
	Type to
)
Visual Basic
Function DoConversion ( _
	o As Object, _
	to As Type _
) As Object
F#
abstract DoConversion : 
        o:Object * 
        to:Type -> Object 

Parameters

o
Type: System..::..Object
Ein Objekt.
to
Type: System..::..Type
Der Zieldatentyp.

Return Value

Das Ergebnis der Umwandlung.

Exceptions

ExceptionCondition
System..::..NotSupportedExceptionWenn die Umwandlung nicht unterstützt wird.

See Also