Hi,
I've just migrated from
VB.NET
Suppose that I have defined the struct as below
struct MyStruct
{
int i;
int j;
int [] N;
}
Then when I declared my array of struct like
MyStruct [] Strc;
It was ok but when I compiled it, I got the error that it should be assigned. I found out that I need to use the New(). However, I dont know how to declare and assign with New.
Thanks for your responce.