When we want to return null in X++ and assign it to an CLR object, it will throw out an issue that "Microsoft Dynamics anytype cannot be marshaled to CLR Object", this is because null in X++ is anytype. So if we want to return null and assign it to an CLR Object, we should know the type of the CLR Object (refer which class). Then we can use following code:
return CLRInterop::Null("System.xxxx");
本文出自 “9079534” 博客,请务必保留此出处http://9089534.blog.51cto.com/9079534/1585369
[Dynamics AX] CLR return Null in X++
原文地址:http://9089534.blog.51cto.com/9079534/1585369