X++ in AX7: Internal keyword
Views (4094)
|
|
internal is a new keyword in X++. It has the same semantics as in C#. When you mark a class or method as internal, then it can only be accessed from within the module where it is defined. internal class MyInternalClass
{
internal void myInternalMethod()
{
}
}
Notice, you can define internal methods on public classes too. |
THIS POST APPLIES TO MICROSOFT DYNAMICS AX7 TECHICAL PREVIEW; IS PROVIDED AS-IS AND CONFERS NO RIGHTS.

Like
Report
*This post is locked for comments