-
Notifications
You must be signed in to change notification settings - Fork 36
M_CodeJam_Mapping_MappingSchema_GetConverter__2
Andrew Koryavchenko edited this page Jun 17, 2018
·
5 revisions
Returns converter from a value of type TFrom to TTo.
Namespace: CodeJam.Mapping
Assembly: CodeJam.Blocks (in CodeJam.Blocks.dll) Version: 2.0.0.0
C#
public Func<TFrom, TTo> GetConverter<TFrom, TTo>()
VB
Public Function GetConverter(Of TFrom, TTo) As Func(Of TFrom, TTo)
F#
member GetConverter : unit -> Func<'TFrom, 'TTo>
- TFrom
- Type to convert from.
- TTo
- Type to convert to.
Type: Func(TFrom, TTo)
Convert function.