Gets the value associated with the specified key.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Default Property Item( _
   ByVal  As  _
) As 
             
        
            
            'Usage
 
Dim instance As ImGearReadOnlyDictionary(Of TKey,TValue)
Dim key As 
Dim value As 
 
instance.Item(key) = value
 
value = instance.Item(key)
             
        
            
            public  this[ 
    
]; {get; set;}
             
        
            
            public: __property  get_Item    
;
public: __property void set_Item    ,
    
;
             
        
            
            public:
property  default [TKey^] {
    get( );
   void set ( ,  value);
}
             
        
             
        
            Parameters
- key
 
- The key of the value to get.
 
            
            Property Value
TValue object.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also