-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
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
Is there a way to prevent certain conversions? #123
Comments
Remove |
Removing the
|
I have a similar problem. I want load it as string. It is always recognized as TimeSpan.
|
I was able to read "001" and "66123" as a strings using the constructor with inferTypesFromString set to false:
The intellisense sometime shows the previous "logic" (TimeSpan) but at runtime it works. Rename the "Configuration" type temporary make it reload the new type and showing the correct type. |
Values likes
001
,1234
, etc in my configuration ends up automatically asTimeSpan
. Is there a way to prevent this? I tried quoting them but it made no difference.The text was updated successfully, but these errors were encountered: