Class PinnedArray<T>
  
  
  
  
    Inheritance
    
    PinnedArray<T>
      
      
   
  
  
  
  Assembly: cs.temp.dll.dll
  Syntax
  
    public class PinnedArray<T> : IDisposable
   
  Type Parameters
  
  Constructors
  
  
  
  
  PinnedArray(T[])
  
  
  Declaration
  
    public PinnedArray(T[] data)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | T[] | 
        data | 
         | 
      
    
  
  
  
  
  PinnedArray(Int32)
  
  
  Declaration
  
    public PinnedArray(int count)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | Int32 | 
        count | 
         | 
      
    
  
  Properties
  
  
  
  
  ByteSize
  
  
  Declaration
  
    public int ByteSize { get; }
   
  Property Value
  
  
  
  
  Count
  
  
  Declaration
  
    public int Count { get; }
   
  Property Value
  
  
  
  
  Data
  
  
  Declaration
  
  Property Value
  
  
  
  
  Item[Int32]
  
  
  Declaration
  
    public T this[int index] { get; set; }
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | Int32 | 
        index | 
         | 
      
    
  
  Property Value
  
  
  
  
  Pointer
  
  
  Declaration
  
    public IntPtr Pointer { get; }
   
  Property Value
  
  Methods
  
  
  
  
  Dispose()
  
  
  Declaration
  
  
  
  
  Finalize()
  
  
  Declaration
  
    protected void Finalize()
   
  Operators
  
  
  
  
  Implicit(PinnedArray<T> to IntPtr)
  
  
  Declaration
  
    public static implicit operator IntPtr(PinnedArray<T> array)
   
  Parameters
  
  Returns
  
  Implements