9 namespace Core.TypeCast
12 using System.Reflection;
13 using System.Reflection.Emit;
14 using System.Runtime.Serialization;
48 public Converter(Func<TIn, TOut, TOut> converterDefault)
49 : base(converterDefault)
62 public Converter(Func<TIn, object, TOut> converterDefaultAnyType)
63 : base(converterDefaultAnyType)
78 public Converter(MethodInfo converterInfo, Type argument)
79 : base(converterInfo, argument)
Converter(Func< TIn, TOut > converter)
Initializes a new instance of the Converter<TIn, TOut> class.
Converter(MethodInfo converterInfo, Type argument)
Initializes a new instance of the Converter<TIn, TOut> class.
Converter(Func< TIn, object, TOut > converterDefaultAnyType)
Initializes a new instance of the Converter<TIn, TOut> class.
Converter(Func< TIn, TOut, TOut > converterDefault)
Initializes a new instance of the Converter<TIn, TOut> class.
The Converter base class, providing a simple container for conversion types, ConverterAttribute and c...