TypeConverter allows converting values from one type to another. For example, you can convert a string entered into an editor to a custom type. To use TypeConverter, assign it as an attribute to a property that you wish to convert:
[C#][TypeConverter(typeof(MyTypeConverter))]publicCustomerValue{ get; set;}