Map.definitionString Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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;
}