RankedMapTKey, TValueKeys Property |
Namespace: Kaos.Collections
public RankedMapTKey, TValueKeyCollection Keys { get; }
// To get the keys alone, use the Keys property. RankedMap<string,string>.KeyCollection keys = fmt.Keys; // The items of a KeyCollection have the type specified for the map keys. Console.WriteLine ("\nKeys:"); foreach (string x in keys) Console.WriteLine ($" {x}");