Jan 24, 2012

How to reverse a string in AX?

A simple job to reverse a string


static void strReverve(Args _args)
{
str  s;
int  i;
;
s =  'Test Info';
info(strReverse(s));
}

No comments: