Beispiel #1
0
 public void SetAttribute(ICodeKey key, object val)
 {
     attributes[key] = val;
 }
Beispiel #2
0
 public object GetAttribute(ICodeKey key)
 {
     object val = null;
     attributes.TryGetValue(key, out val);
     return val;
 }