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