Developing on D365FO
I'm trying to make a line feed in a infobox, but it won't work, in many forums people say that \n will do the job.
Example
public static void main(Args _args)
{
str infostr = 'FirstLine\nSecondLine';
Box::info(infostr);
}
This returns "FirstLine SecondLine" the \n is converted to a space
: