Ejemplo n.º 1
0
 /// <summary>
 /// Create the standard vector of OclPlatformInfo
 /// </summary>
 public VectorOfOclPlatformInfo(MDMatch[][] values)
     : this()
 {
     using (OclPlatformInfo v = new OclPlatformInfo())
     {
         for (int i = 0; i < values.Length; i++)
         {
             v.Push(values[i]);
             Push(v);
             v.Clear();
         }
     }
 }