TypeConverter 1.0.28-pre92
dotnet add package TypeConverter --version 1.0.28-pre92
NuGet\Install-Package TypeConverter -Version 1.0.28-pre92
<PackageReference Include="TypeConverter" Version="1.0.28-pre92" />
paket add TypeConverter --version 1.0.28-pre92
#r "nuget: TypeConverter, 1.0.28-pre92"
// Install TypeConverter as a Cake Addin #addin nuget:?package=TypeConverter&version=1.0.28-pre92&prerelease // Install TypeConverter as a Cake Tool #tool nuget:?package=TypeConverter&version=1.0.28-pre92&prerelease
TypeConverter is a lightweight, portable class library which allows to convert between objects of different types.
This library is shipped with some basic sample converters, however, you are free to write your own type converters
and register them in the IConverterRegistry.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
MonoAndroid | monoandroid10 is compatible. |
MonoTouch | monotouch10 is compatible. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Windows Phone | wp8 is compatible. wp81 was computed. wpa81 is compatible. |
Windows Store | win81 is compatible. |
Xamarin.iOS | xamarinios10 is compatible. |
-
- Guards (>= 1.0.13)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on TypeConverter:
Package | Downloads |
---|---|
CrossPlatformLibrary.Settings
CrossPlatformLibrary.Settings is a plug-in for reading and writing of platform-independent application settings. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.28-pre92 | 3,083 | 8/10/2017 |
1.0.27 | 23,496 | 4/2/2016 |
1.0.26 | 1,079 | 3/30/2016 |
1.0.25 | 1,439 | 10/12/2015 |
1.0.24 | 1,567 | 9/30/2015 |
1.0.23 | 1,212 | 9/26/2015 |
1.0.22 | 1,350 | 9/24/2015 |
1.0.21 | 1,150 | 9/18/2015 |
1.0.20 | 1,124 | 9/18/2015 |
1.0.19 | 1,113 | 9/17/2015 |
1.0.18 | 1,135 | 9/15/2015 |
1.0.17 | 1,143 | 9/15/2015 |
1.0.16 | 1,125 | 9/15/2015 |
1.0.15 | 1,130 | 9/15/2015 |
1.0.14 | 1,115 | 9/15/2015 |
1.0.13 | 1,129 | 9/13/2015 |
1.0.12 | 1,122 | 9/13/2015 |
1.0.11 | 1,082 | 9/13/2015 |
1.0.10 | 1,102 | 9/12/2015 |
1.0.7 | 1,119 | 9/7/2015 |
1.0.5 | 1,112 | 9/4/2015 |
1.0.4 | 1,073 | 9/4/2015 |
1.0.3 | 1,091 | 9/4/2015 |
1.0.2 | 1,133 | 9/4/2015 |
1.0.1 | 1,098 | 9/4/2015 |
1.0.28-pre
- Added new converters
- Added new RegisterConverter method in IConverterRegistry which allows to register non-generic IConvertable converters
- Added new RegisterMapping method which allows to specify simple property-to-property mappings
- Minor performance improvements and bug fixes
1.0.27
- Complete refactoring of caching mechanism
- New IConverterCache interface to interact with caching configuration
- Cache size limit with read access weighting
1.0.26
- Added ChangeType support (which uses Convert.ToXYZ(value) methods)
1.0.25
- Improved support for implicit and explicit type casting
- TryConvert API cleaned-up