Method Types in Dynamics AX Classes There are many different types of methods. Some of the more common types are 1. Static Methods 2. Main Method 3. Display Methods 4. Accessor Methods 1. Static Methods Static methods are attached to a class. However, they do not need that class to be instantiated to execute that method. They are not within the scope of the class, so any class variables are not available in a static method. Static methods are declared static by using the Static method modifier. Static...(read more)
↧