Hi,
Function in Dynamics D365 & AX 2012
enum2Str Function REFERENCE
Converts the specified enumerated text to a character representation.
Function in Dynamics D365 & AX 2012
enum2Str Function REFERENCE
Converts the specified enumerated text to a character representation.
static void enum2StrExample(Args _arg)
{
ListCode l;
;
l = ListCode::IncludeNot;
print enum2Str(l);
pause;
}
Comments
Post a Comment