-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Mapping_MappingSchema_TryGetConvertExpression
Andrew Koryavchenko edited this page Jun 17, 2018
·
5 revisions
Returns an expression that converts a value of type TFrom to TTo or null.
Namespace: CodeJam.Mapping
Assembly: CodeJam.Blocks (in CodeJam.Blocks.dll) Version: 2.0.0.0
C#
protected virtual LambdaExpression TryGetConvertExpression(
Type from,
Type to
)
VB
Protected Overridable Function TryGetConvertExpression (
from As Type,
to As Type
) As LambdaExpression
F#
abstract TryGetConvertExpression :
from : Type *
to : Type -> LambdaExpression
override TryGetConvertExpression :
from : Type *
to : Type -> LambdaExpression
- from
- Type: System.Type
Type to convert from. - to
- Type: System.Type
Type to convert to.
Type: LambdaExpression
Convert expression.