public TFixedSizeArrayDebugView(TFixedSizeArrayBase <T> fixedSizeArray)
 {
     if (fixedSizeArray == null)
     {
         throw new ArgumentNullException("fixedSizeArray");
     }
     this.fixedSizeArray = fixedSizeArray;
 }
Exemple #2
0
 public Enumerator(TFixedSizeArrayBase <T> array)
 {
     this.array = array;
     index      = -1;
 }