Share via


Map.definitionString Method

Definition

Returns a string that contains a definition of the map.

public:
 System::String ^ definitionString();
public string definitionString ();
member this.definitionString : unit -> string
Public Function definitionString () As String

Returns

A string that contains the definition of the map.

Remarks

The definition of the map.

The following example creates a map and then prints the definition of the map.

{ 
    Map myMap = new Map(Types::Integer, Types::String); 
    print myMap.definitionString(); 
    pause; 
}

Applies to