Can I initialize and instance of an object in an array with its index in the array?
Below is what I want to achieve. Thanks in advance for the help. I'm a beginner so sorry if this is a very missworded question
public class MyClass{ public MyStruct[] structArray = new MyStruct[10]; print(MyStruct[n].id);}public struct MyStruct{ public int id; public MyStruct(int i) { id = i; // Make `id` equal to the index of this instance in `structArray` }}
public class MyClass{ public MyStruct[] structArray = new MyStruct[10]; print(MyStruct[n].id);}public struct MyStruct{ public int id; public MyStruct(int i) { id = i; // Make `id` equal to the index of this instance in `structArray` }}