Источник:
http://axmas.blogspot.com/2012/10/struct.html
==============
static void Collection_Struct (Args _args)
{
//Create a struct with two fields
struct myCar = new struct ("int ModelYear; str Carbrand");
int i;
;
// Set values to the fields
mycar.value ("ModelYear", 2000);
mycar.value ("Carbrand", "BMW");
// Add a new field and give it a value
myCar.add ("Model", "316");
//Loop through the fields of the struct
for ( i = 1; i