예제 #1
0
파일: FastList.cs 프로젝트: Alan-love/xenko
 internal Enumerator(FastList <T> list)
 {
     this.list = list;
     index     = 0;
     current   = default(T);
 }
예제 #2
0
 public FastListStruct([NotNull] FastList <T> fastList)
 {
     Count = fastList.Count;
     Items = fastList.Items;
 }