You don’t need to use Linq to get the values. The Dictionary(TKey, TValue) has a property that holds the values, Dictionary(TKey, TValue).Values:
var fields = objDictionary.Values.ToList();
You don’t need to use Linq to get the values. The Dictionary(TKey, TValue) has a property that holds the values, Dictionary(TKey, TValue).Values:
var fields = objDictionary.Values.ToList();