Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes: #8493 Fixes: #9632 Fixes: #9339 Fixes: #8385 Fixes: 10077 This fix adds support for type converters as well as a few other minor things we were missing from binding. The key thing about supporting conversions is that we new can support arbitrary types with `@bind`. This means you can use it with generics, which is something many users have tried. Along with type converters we get Guid and TimeSpan from the BCL. The BCL also includes converters for types we're less interested in like `short`.
- Loading branch information
db88626
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In EventCallbackFactoryBinderExtensions class it is parsing numbers using the CurrentCulture, and that can give different results depending on the machine where the app is ran. Shouldn't it use InvariantCulture?