Example #1
0
 void ICollection.CopyTo(Array array, int index)
 {
     AdomdUtils.CheckCopyToParameters(array, index, this.Count);
     for (int i = 0; i < this.Count; i++)
     {
         array.SetValue(this[i], index + i);
     }
 }