Click or drag to resize

ContainerHelperMapAsArrayV(DictionaryInt32, V) Method

Creates a new list representing an array, containing all values from the given dictionary representing a map map from int to some values.

Namespace: de.unika.ipd.grGen.libGr
Assembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntax
C#
public static List<V> MapAsArray<V>(
	Dictionary<int, V> map
)

Parameters

map  DictionaryInt32, V
A dictionary representing a map.

Type Parameters

V

Return Value

ListV
A new list containing all values from map.
See Also