Skip to main content

Notifications

strfmt function in X++

strfmt function also converts any other data types into string :
void dispFun( )
{
int age=5;
str name ="abdel fatah";
;
info(strfmt("My Name Is : %1 , My Age Is : %2",name,age));
}

Comments

*This post is locked for comments