emptyDataSet() 공개 메소드

public emptyDataSet ( ) : DataSet
리턴 DataSet
예제 #1
0
 public DataSet unmatchedExamples(DataSet ds)
 {
     DataSet unmatched = ds.emptyDataSet();
     foreach (Example e in ds.examples)
     {
         if (!(matches(e)))
         {
             unmatched.add(e);
         }
     }
     return unmatched;
 }