Click or drag to resize

RankedMapTKey, TValueValues Property

Namespace:  Kaos.Collections
Assembly:  KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax
C#
public RankedMapTKey, TValueValueCollection Values { get; }

Property Value

Type: RankedMapTKey, TValueValueCollection
Remarks
The values given by this collection are sorted in the same order as their respective keys.
Examples
The below snippet is part of a larger example of the RankedMapTKey, TValueclass.
C#
// To get the values alone, use the Values property.
RankedMap<string,string>.ValueCollection values = fmt.Values;

Console.WriteLine ("\nValues:");
foreach (string x in values)
    Console.WriteLine ($"  {x}");
See Also