I have this code :
public struct SmartFilter
{
public int from, to;
public ArrayList collect = new ArrayList();
public long bit;
}
i get error :
cannot have instance field initializers in structs
i try different way to get over this error without success,
how to have a array list in struct / class?