You are a Dynamics 365 Finance developer.
You need to create an extension class.
Which action should you perform?
Click on the arrows to vote for the correct answer
A. B. C. D.A.
Extension classes are final classes that are adorned with the ExtensionOf attribute and that also have a name that has the _Extension suffix.
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/class-extensionsIn Dynamics 365 Finance and Operations, an extension class is used to add new functionality or modify existing functionality of an existing class without modifying the original class. This approach helps to maintain the original code as it is and provide flexibility to customize the behavior of the application.
To create an extension class in Dynamics 365 Finance and Operations, the following steps should be performed:
In addition to decorating the class with the ExtensionOf attribute, there are some other guidelines that should be followed when creating an extension class in Dynamics 365 Finance and Operations:
Regarding the other answer options: