Exemplo n.º 1
0
 public virtual string[] GetReferencesCommand(string[] references, IIntermediateCompilerOptions options)
 {
     return(Tweaks.ProcessArray(references, delegate(string r)
     {
         return GetReferenceCommand(r, options);
     }));
 }
Exemplo n.º 2
0
 public virtual string[] GetSourcesCommand(string[] files, IIntermediateCompilerOptions options)
 {
     return(Tweaks.ProcessArray(files, delegate(string f)
     {
         return GetSourceCommand(f, options);
     }));
 }