コード例 #1
0
 static IWrapExportItem CreateAssemblyRef(IWrapExportItem item)
 {
     try
     {
         return new AssemblyReferenceExportItem(item);
     }
     catch (Exception)
     {
         return null;
     }
 }
コード例 #2
0
 public AssemblyReferenceExportItem(IWrapExportItem item)
 {
     _wrapped = item;
     AssemblyName = AssemblyName.GetAssemblyName(item.FullPath);
 }