Monday, November 1, 2021

Class basic code concept in D365 FO X++

Class GITS_Test_AY

{

    public static GITS_Test_AY construct()

    {

        return new GITS_Test_AY();

    }


    public void PrintName(str _Name)

    {

        info(strFmt("%1",_Name));

    }


    public static void withoutReference()

    {

        info(strFmt("Hello"));

    }


}






----------------Calling class----------------

class GITS_Runnable_AY

{

    public static void main(Args _args)

    {

        GITS_Test_AY    obj = GITS_Test_AY::construct();

        obj.PrintName("Jyoti");

        obj.PrintName("Atul");

        GITS_Test_AY::withoutReference();

    }


}