I\'m a former C++/STL programmer trying to code a fast marching algorithm using c#/.NET technology...
I\'m searching for an equivalent of STL method \"map::insert\"
Is there something that explains why this is not possible using .NET containers ?
Without knowing the real background, I assume it is because of simplicity of the Dictionary. There are only the basic, easy to understand functions: Add
, Remove
a.s.o., while the index operator does a little bit of magic, which was probably assumed to be intuitive.