Class DVectorArray3<T>
  
  
  
  
    Inheritance
    
    DVectorArray3<T>
      
      
      
      
   
  
  
  Namespace: g3
  Assembly: cs.temp.dll.dll
  Syntax
  
    public class DVectorArray3<T> : IEnumerable<T>, IEnumerable
   
  Type Parameters
  
  Constructors
  
  
  
  
  DVectorArray3(T[])
  
  
  Declaration
  
    public DVectorArray3(T[] data)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | T[] | 
        data | 
         | 
      
    
  
  
  
  
  DVectorArray3(Int32)
  
  
  Declaration
  
    public DVectorArray3(int nCount = 0)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | Int32 | 
        nCount | 
         | 
      
    
  
  Fields
  
  
  
  vector
  
  
  Declaration
  
  Field Value
  
  Properties
  
  
  
  
  Count
  
  
  Declaration
  
    public int Count { get; }
   
  Property Value
  
  Methods
  
  
  
  
  Append(T, T, T)
  
  
  Declaration
  
    public void Append(T a, T b, T c)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | T | 
        a | 
         | 
      
      
        | T | 
        b | 
         | 
      
      
        | T | 
        c | 
         | 
      
    
  
  
  
  
  Clear()
  
  
  Declaration
  
  
  
  
  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)
  
  
  Declaration
  
    public void Set(int i, T a, T b, T c)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | Int32 | 
        i | 
         | 
      
      
        | T | 
        a | 
         | 
      
      
        | T | 
        b | 
         | 
      
      
        | T | 
        c | 
         | 
      
    
  
  Implements