Interface IConverter
Inteface for a converter.
Namespace: Fibula.Common.Contracts.Abstractions
Assembly: Fibula.Common.Contracts.dll
Syntax
public interface IConverter
Methods
| Improve this Doc View SourceConvert(String)
Converts a string into a strong type (boxed into object) implementation.
Declaration
object Convert(string value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | value | The string value to convert. |
Returns
| Type | Description |
|---|---|
| System.Object | A boxed strongly typed implementation. |