コード例 #1
0
ファイル: DataSource.cs プロジェクト: Sandy4321/Labeling
 public List <T> Select <T>(Language.Value term)
 {
     // TODO: move this Factor hack elsewhere...
     return(Select <T>((term is Factor) ? "unclass(" + term.Formula + ")-1" : term.Formula));
 }
コード例 #2
0
ファイル: DataSource.cs プロジェクト: Sandy4321/Labeling
 public List <object> Select(Language.Value term)
 {
     return(Select <object>(term));
 }