Hi,
I have a structure declared in C#
public struct myStruct
{
int x;
}
I created a 2D array of structures
myStruct[,] theStruct = new myStruct[3,3];
What is the C# equivalent of the following C++ code?
theStruct[0][0].x = 50;??
Please Help
Thanks in advance