示例#1
0
 public static IEnumerable <Object> FetchExportObjects(FileCollection collection)
 {
     //yield break;
     return(collection.FetchAssets());
 }
 public void Export(string exportPath, Func <Object, bool> filter)
 {
     FileCollection.Exporter.Export(exportPath, FileCollection, FileCollection.FetchAssets().Where(t => filter(t)));
 }