Map.new Method [AX 2012]

Creates a new map.

public void new(Types key, Types value)

Run On

Called

Parameters

key
Type: Types Enumeration
The type of the keys.
value
Type: Types Enumeration
The type of the values.

The following example creates a map that maps string keys onto integer values.

Map myMap = new Map(Types::String, Types::Integer);

Community Additions

ADD
Show: