// Random Number generator in AX
static void Random(Args _args)
{
Random Random = new Random();
int RandomNo,Randomwithmod;
;
RandomNo = Random.nextInt();
Randomwithmod = Random.nextInt() mod 1000;
info(strFmt("%1 %2",RandomNo,Randomwithmod));
}
static void Random(Args _args)
{
Random Random = new Random();
int RandomNo,Randomwithmod;
;
RandomNo = Random.nextInt();
Randomwithmod = Random.nextInt() mod 1000;
info(strFmt("%1 %2",RandomNo,Randomwithmod));
}
No comments:
Post a Comment