Given a class:
class clsPerson { public int x, y; }
Is there some way to create an array of these classes with each element initialized to
If it would make sense to do so, you could change class clsPerson to struct Person. structs always have a default value.
class clsPerson
struct Person
struct