7 public interface IAttributesCollection
9 object this [SymbolId name
] { get; set; }
12 class AttributesCollection
: IAttributesCollection
14 public object this [SymbolId name
] {
22 public static object SetDictionaryValue (object self
, SymbolId name
, object value)
24 IAttributesCollection dict
= new AttributesCollection ();
25 return dict
[name
] = value;
30 SetDictionaryValue (null, new SymbolId (), 1);