Joel W Winston
Member
Is it possible to define a static variable in OpenEdge like we do in C?
Thanks
Joel
Thanks
Joel
CLASS pds.common.Test:
/*********************************************************************************/
/* Data members */
/*********************************************************************************/
DEFINE PUBLIC STATIC VARIABLE myVariable AS CHARACTER NO-UNDO.
/*********************************************************************************/
/* Constructor & Desctructor */
/*********************************************************************************/
CONSTRUCTOR PUBLIC Test ( ):
END CONSTRUCTOR.
DESTRUCTOR PUBLIC Test ( ):
END DESTRUCTOR.
/*********************************************************************************/
/* Method implementations */
/*********************************************************************************/
END CLASS.
Is it possible to define a static variable in OpenEdge like we do in C?
Thanks
Joel