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 |
---|---|
MonoAndroid | monoandroid10 |
MonoTouch | monotouch10 |
Universal Windows Platform | uap uap10.0 |
Windows Phone | wp8 wp81 wpa81 |
Windows Store | win81 |
Xamarin.iOS | xamarinios10 |
-
- 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 | 2,683 | 8/10/2017 |
1.0.27 | 13,647 | 4/2/2016 |
1.0.26 | 957 | 3/30/2016 |
1.0.25 | 1,244 | 10/12/2015 |
1.0.24 | 1,442 | 9/30/2015 |
1.0.23 | 1,089 | 9/26/2015 |
1.0.22 | 1,212 | 9/24/2015 |
1.0.21 | 1,018 | 9/18/2015 |
1.0.20 | 1,002 | 9/18/2015 |
1.0.19 | 984 | 9/17/2015 |
1.0.18 | 1,002 | 9/15/2015 |
1.0.17 | 1,015 | 9/15/2015 |
1.0.16 | 1,001 | 9/15/2015 |
1.0.15 | 1,000 | 9/15/2015 |
1.0.14 | 987 | 9/15/2015 |
1.0.13 | 999 | 9/13/2015 |
1.0.12 | 993 | 9/13/2015 |
1.0.11 | 961 | 9/13/2015 |
1.0.10 | 980 | 9/12/2015 |
1.0.7 | 989 | 9/7/2015 |
1.0.5 | 1,000 | 9/4/2015 |
1.0.4 | 976 | 9/4/2015 |
1.0.3 | 995 | 9/4/2015 |
1.0.2 | 1,021 | 9/4/2015 |
1.0.1 | 991 | 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