'Declaration
 
<JetBrains.Annotations.CanBeNullAttribute()>
Default Property Item( _
   ByVal  As Object _
) As Object
             
        
            
            'Usage
 
Dim instance As _Dictionary
Dim key As Object
Dim value As Object
 
instance.Item(key) = value
 
value = instance.Item(key)
             
        
            
            [JetBrains.Annotations.CanBeNull()]
object this[ 
   object 
]; {get; set;}
             
        
            
            [JetBrains.Annotations.CanBeNull()]
property Object^ default [Object^] {
   Object^ get(Object^ );
   void set (Object^ , Object^ value);
}
             
        
             
        
            Parameters
- key
Property Value
The value of this property can be null (Nothing in Visual Basic).
 
            
            
            
            
             
Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows
            
            See Also