예제 #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;
 }