Delphi Compiler Error
E2430 for-in statement cannot operate on collection type ‘%s’
Reason for the Error & Solution
A for-in statement can only operate on the following collection types:
- Primitive types that the compiler recognizes, such as arrays, sets or strings
 - Types that implement
 - Types that implement the GetEnumerator pattern as documented in the Delphi Language Guide
 
Ensure that the specified type meets these requirements.