Class IntList
  
  
  
  
  
  
  Syntax
  
    [Serializable]
public class IntList
   
  Constructors
  
  IntList()
  
  
  Declaration
  
  
  IntList(int)
  
  
  Declaration
  
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | int | size |  | 
    
  
  
  IntList(int[])
  
  
  Declaration
  
    public IntList(int[] tab)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | int[] | tab |  | 
    
  
  Fields
  list
  
  
  Declaration
  
  Field Value
  
  Properties
  
  this[int]
  
  
  Declaration
  
    public int this[int index] { get; set; }
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | int | index |  | 
    
  
  Property Value
  
  
  length
  
  
  Declaration
  
    public int length { get; }
   
  Property Value
  
  Operators
  
  implicit operator int[](IntList)
  
  
  Declaration
  
    public static implicit operator int[](IntList o)
   
  Parameters
  
  Returns