We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Based on:
Converters/To.cs
Lines 12 to 18 in 8c59403
MaxValue
The current way to resolve it is to use target type's MaxValue as the closest matching value.
There different ways to resolve the same conflict:
System.Convert
IConvertible
The text was updated successfully, but these errors were encountered:
Code comment converted to issue #15.
068db8d
No branches or pull requests
Based on:
Converters/To.cs
Lines 12 to 18 in 8c59403
If a source type value is greater than the target type's
MaxValue
it is called a conversion conflict.The current way to resolve it is to use target type's
MaxValue
as the closest matching value.There different ways to resolve the same conflict:
System.Convert
logic.IConvertible
interface implementations, for example Int64.IConvertible.ToInt32The text was updated successfully, but these errors were encountered: