Q
How do I declare a constant array of struct in C# ?
struct TEST
{
int x;
int y;
};
TEST[] test = { {1, 2}. {2. 3} };
The above doesn't compile. Any idea ?
struct TEST
{
int x;
int y;
};
TEST[] test = { {1, 2}. {2. 3} };
The above doesn't compile. Any idea ?