I have dictionary object like this:
Dictionary<int, string> dictInputColumnNames;
...
I want to get the key at index 0 in this dictionary, I have the same code in vb which is like this:
Dim inputFieldName As String = dictInputColumnNames(dictInputColumnNames.Keys(0))
What is the equivalent code in C#