Class VectorArray4<T>
  
  
  
  
    Inheritance
    
    VectorArray4<T>
      
   
  
  
  Namespace: g3
  Assembly: cs.temp.dll.dll
  Syntax
  
    public class VectorArray4<T> : IEnumerable<T>, IEnumerable
   
  Type Parameters
  
  Constructors
  
  
  
  
  VectorArray4(T[])
  
  
  Declaration
  
    public VectorArray4(T[] data)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | T[] | 
        data | 
         | 
      
    
  
  
  
  
  VectorArray4(Int32)
  
  
  Declaration
  
    public VectorArray4(int nCount = 0)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | Int32 | 
        nCount | 
         | 
      
    
  
  Fields
  
  
  
  array
  
  
  Declaration
  
  Field Value
  
  Properties
  
  
  
  
  Count
  
  
  Declaration
  
    public int Count { get; }
   
  Property Value
  
  Methods
  
  
  
  
  GetEnumerator()
  
  
  Declaration
  
    public IEnumerator<T> GetEnumerator()
   
  Returns
  
  
  
  
  Resize(Int32)
  
  
  Declaration
  
    public void Resize(int Count)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | Int32 | 
        Count | 
         | 
      
    
  
  
  
  
  Set(Int32, T, T, T, T)
  
  
  Declaration
  
    public void Set(int i, T a, T b, T c, T d)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | Int32 | 
        i | 
         | 
      
      
        | T | 
        a | 
         | 
      
      
        | T | 
        b | 
         | 
      
      
        | T | 
        c | 
         | 
      
      
        | T | 
        d | 
         | 
      
    
  
  
  
  
  Set(Int32, Int32, VectorArray4<T>)
  
  
  Declaration
  
    public void Set(int iStart, int iCount, VectorArray4<T> source)
   
  Parameters
  
  Implements