Exemplo n.º 1
0
 public void Dispose()
 {
     this.Current = default;
     m_Array      = null;
 }
Exemplo n.º 2
0
 public TezArray(TezArray <T> other)
 {
     m_Array = new T[other.count];
     m_Count = other.count;
     Array.Copy(other.m_Array, m_Array, m_Count);
 }
Exemplo n.º 3
0
 public Enumerator(TezArray <T> array)
 {
     m_Array = array;
 }