Namespace: nom.tam.util
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)

Syntax

Visual Basic (Declaration)
Public Overrides Default Property Item( _ 
   ByVal key As Object _ 
) As Object _
    Implements IDictionary.Item
C#
public override object this[
   object key
] { get; set; }
C++
public override property object default[Object key] override  {
    Object get(Object key);
    void set(Object key, Object value);
}
J#
/** property */
public object get_Item(object key);

/** property */
public void set_Item(object key, object value);
JScript
JScript supports the use of indexed properties, but not the declaration of new ones.

Implements

IDictionary.Item

See Also