You can iterate through the set of key-item groups and read off the keys, e.g.
var keys = myLookup.Select(g => g.Key).ToList();
You can iterate through the set of key-item groups and read off the keys, e.g.
var keys = myLookup.Select(g => g.Key).ToList();