示例#1
0
文件: ICode.cs 项目: jstark/dradis
 public void SetAttribute(ICodeKey key, object val)
 {
     attributes[key] = val;
 }
示例#2
0
文件: ICode.cs 项目: jstark/dradis
 public object GetAttribute(ICodeKey key)
 {
     object val = null;
     attributes.TryGetValue(key, out val);
     return val;
 }