Hello to all! The task is simple, in c ++ it is clear how it is implemented. But how to do this in C #, I still do not understand:
There is a set of variables of type struct. It is necessary to make so that each element of the array is assigned to the 1st variable from this set. How to do it?
This is approximately how it looks in C ++:
struct STR *a[3]; struct STR d, g, f; a[0] = &d; a[1] = &g; ...
struct? - awesoon