Hi Team,
How to migrate modified methods of class, form, table, view and query from Ax2012 to Dynamics 365.
Ex: Below is the existing method
{
int a;
int b;
int c;
c=a+b;
}
Below is the existing modified method
public int Addition()
{
int a;
int b;
int c;
c=a+b;
return c;
}
Could you please help me to migrate modified methods.
Thanks in advance
Phani