I've got a simple struct.
struct Data
{
public float Size;
public Data(float size)
{
Size = size;
}
}
If I create an array of the struct above, the array does not initialise each element to null. How can I change this?