using System;
using System.Collections.Generic;
ref struct CompStruct {}
class Program
{
static void Main()
List<CompStruct> myCompStruct = new List<CompStruct>();
CompStruct[] myCompStrutcArray = new CompStruct[3];
}