Insert into a Map in D365 F&O - X++ Code
X++ Programming Language / Map in D365 F&O - X++ Code
149
Given Input:
5 key and values
Expected Output:
No of elements 5
Program:
internal final class CodePractice
{
public static void main(Args _args)
{
Map map = new Map (Types::Integer, Types::String);
// inserting key and values
map.insert (1,"Rumman");
map.insert (2,"Osman");
map.insert (3,"Musar");
map.insert (4,"Inzamamul");
map.insert (5,"Hassan");
if (! map.empty ())
{
info (strFmt ("No of elements %1 ", map.elements ()));
}
}
}
Output:
Explanation:
This Particular section is dedicated to Programs only. If you want learn more about X++ Programming Language. Then you can visit below links to get more depth on this subject.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS
No of elements 5
Program:
internal final class CodePractice { public static void main(Args _args) { Map map = new Map (Types::Integer, Types::String); // inserting key and values map.insert (1,"Rumman"); map.insert (2,"Osman"); map.insert (3,"Musar"); map.insert (4,"Inzamamul"); map.insert (5,"Hassan"); if (! map.empty ()) { info (strFmt ("No of elements %1 ", map.elements ())); } } }
Output:
Explanation:
This Particular section is dedicated to Programs only. If you want learn more about X++ Programming Language. Then you can visit below links to get more depth on this subject.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS