Add support for the "[]" string, creating array data objects. There are a few cases to consider for how one might declare an array in C#. In the variable handler, array[0] could be saved as "array0", array[1] as "array1", etc.
int[] values = new int[10];
float[] other_values = new float[] { 10.2, 3.4 };
Add support for the "[]" string, creating array data objects. There are a few cases to consider for how one might declare an array in C#. In the variable handler, array[0] could be saved as "array0", array[1] as "array1", etc.