Class DVectorArray2<T>
  
  
  
  
    Inheritance
    
    DVectorArray2<T>
      
      
      
   
  
  
  Namespace: g3
  Assembly: cs.temp.dll.dll
  Syntax
  
    public class DVectorArray2<T> : IEnumerable<T>, IEnumerable
   
  Type Parameters
  
  Constructors
  
  
  
  
  DVectorArray2(T[])
  
  
  Declaration
  
    public DVectorArray2(T[] data)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | T[] | data |  | 
    
  
  
  
  
  DVectorArray2(Int32)
  
  
  Declaration
  
    public DVectorArray2(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)
  
  
  Declaration
  
    public void Append(T a, T b)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | T | a |  | 
      
        | T | b |  | 
    
  
  
  
  
  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)
  
  
  Declaration
  
    public void Set(int i, T a, T b)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Int32 | i |  | 
      
        | T | a |  | 
      
        | T | b |  | 
    
  
  Implements