get first value of dic code example
Example 1: c# dictionary first
dictionary.Keys.First();
Example 2: access first element of dictionary python
res = next(iter(test_dict))
dictionary.Keys.First();
res = next(iter(test_dict))