I haved moved from VB to C, from C to C++,Now from C++ to C#.
In VB you can make an array of types eg:
type Position
X as Integer
Y as Integer
end type
dim Positions[100] as Position
Positions[1].X = Positions[1].X + 1
How would i go about doing somthing like this in C#.