CIL Compiler Error (CILC2005): Field offset exceeds the limit of 16MB
The CIL compiler detected that a class exceeds its maximum memory area.
The Sizeof() of a class must not exceed 224 (16777215) and the sum of Sizeof() of all variables (int, long, double, string, structs, ...) must be less than 224.
Possibly, the class contains arrays that are too big or the are too many IEC strings defined.
Remedy: Shrink the class.