I am a C# developer and want to start learning Dynamics AX. Please guide me can I use my .net/C# skills (knowledge of API) in Dynamics AX ?
I know AX is developed in X++ but some one tell me it is possible.
Kindly guide me does AX have a web interface or just it is a desktop application.
X++ is an object-oriented language with similarities to C#. X++ is part of the MorphX development platform that you use to construct accounting and business management systems.
A quick look at MSDN Doc. will reveal similarities and how it is used.
The syntax is much similar to C# so there won't be a steep learning curve for going with this language.
You can integrate it with other applications by using Business Connector.
You can also call managed code like C# in your X++ app by using CLR Interop. However its not possible opposite way. CLR interop works only in the direction where X++ code calls CLR managed assemblies. It does not support calling X++ classes from a CLR managed assembly.