Monthly Archives: November 2008

Support of basic operations on Sets in Dynamics AX

  Good morning   AX supports basic operations on sets, here’s a simple overwiew:   public static void OperationsOnSets(Args _args){    Set a = new Set(Types::Integer); //[1,3]    Set b = new Set(Types::Integer); //[2,3]    Set c = new Set(Types::Integer); //Result    ;   … Continue reading

Posted in Dynamics Ax 4.0x | Comments Off on Support of basic operations on Sets in Dynamics AX