Example #1
0
 internal void Count(SentenceCompareResult result)
 {
     CountChar          += result.Length;
     CountMatchChar     += result.MatchCount;
     CountSentense      += 1;
     CountMatchSentense += result.FullMatch ? 1 : 0;
 }
Example #2
0
 public void Add(SingleCharInputMethod method, SentenceCompareResult result)
 {
     Results.Add(result);
 }