enum CData
{
Name[24],
UdStr[128]
};
new CtInfo[MAX_DATA][CData];
This is my enum. I format the strings in the enum to store data using a function. And after my job is done how will I empty it so that I can use those memory for some other strings? Also I want to format the string inside the enum again when I call the function.