NRefactory
NRefactory copied to clipboard
Wrong Warning: Use of Linq method when there's is a better alternative
Hi, I'm using Dictionary with Linq method ElementAt and MonoDevelop gives me a warning Use of Linq method when there's is a better alternative, and suggest to change ElementAt with indexer [] which for dictionaries is not same.
ElementAt returns KeyValuePair but [] gives only the value of dictionary element.