Browse by Tags
All Tags »
CLR-Interop (RSS)
Sorry, but there are no more tags available to filter with.
When dealing with office integration scenarios and when calling APIs that are based on old COM interfaces, there is a need to specify that a value is not provided. The notmal way to do this (say, in C#) is to use System.Reflection.Missing.Value Now, as
Read More...
As you all know, Dynamics AX supports 32 bit integers in its int datatype. However, sometimes you need to transfer an int16 value to a managed method. Currently the easiest way to acheive this is by doing: static void Job2(Args _args) { System.Int16 short
Read More...