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
Having issues with KeyValuePairs, no getter or setter, on Key and Value.
HoursByDate = new System.Collections.Generic.Dictionary<System.DateTime, decimal> { new KeyValuePair<System.DateTime,decimal> { Key = new DateTime(2015, 12, 23), Value = 85.14m }, new System.Collections.Generic.KeyValuePair<System.DateTime,decimal> { Key = new DateTime(2015, 12, 9), Value = 78.24m }, }
When i switch them to...
HoursByDate = new System.Collections.Generic.Dictionary<System.DateTime, decimal> { { new DateTime(2015, 12, 12, 23, 0, 0, 0), 85.14m }, }
Everything seems to be fine.
The text was updated successfully, but these errors were encountered:
OmarElabd
No branches or pull requests
Having issues with KeyValuePairs, no getter or setter, on Key and Value.
When i switch them to...
Everything seems to be fine.
The text was updated successfully, but these errors were encountered: