Interface IConverter
Interface Converter Source - Destination.
Namespace: Evergine.Common.Attributes.Converters
Assembly: Evergine.Common.dll
Syntax
public interface IConverter
Methods
Convert(object)
Convert source object to destination object.
Declaration
object Convert(object value)
Parameters
Type | Name | Description |
---|---|---|
object | value | source object. |
Returns
Type | Description |
---|---|
object | destination object. |
ConvertBack(object)
Convert destionation object.
Declaration
object ConvertBack(object value)
Parameters
Type | Name | Description |
---|---|---|
object | value | destination object. |
Returns
Type | Description |
---|---|
object | source object. |