Beispiel #1
0
 public IControlledCollection <ICliMetadataCustomAttributeTableRow> GetTaggedEntries(CliMetadataHasCustomAttributeTag hasCustomAttrTag)
 {
     lock (this.syncObject)
     {
         TaggedEntryCollection result;
         if (!lookupTable.TryGetValue(hasCustomAttrTag, out result))
         {
             lookupTable._Add(hasCustomAttrTag, result = new TaggedEntryCollection(this, hasCustomAttrTag));
         }
         return(result);
     }
 }
 public bool TryGetValue(IType key, out ITypedCatchExceptionBlockStatement value)
 {
     return(_exceptionBlocksBackup.TryGetValue(key, out value));
 }