You can't access non-static data from a static method. Non-static data is related to an instance of a class, and a static method is not bound to any instance.

Exactly. The only way would be to have some array of instances somewhere to access.

Reply via email to