In object-oriented programming an object is an instance of a class and is created using the new operator. In Dynamics AX a commonly used pattern is the factory method using a static construct method.
Example[edit]
<xpp>
Args args = new Args();
</xpp>