I have the following dictionary
Dictionary<int, int> datos
Which contains the following key-values:
[0, 2015]
[1, 2016]
[2, 2017]
My goal is to increase the value by 1 ( with LINQ ) so that it stays like this:
[0, 2016]
[1, 2017]
[2, 2018]
Thanks in advance.