예제 #1
0
        public TokenizerTest()
        {
            SimpleDictionary dict = new SimpleDictionary();
            dict.Add("testing");

            tokenizer = new Tokenizer(dict);
        }
예제 #2
0
파일: Checker.cs 프로젝트: pesha/MPspell
 public Checker(Dictionary dictionary, int contextSize)
 {
     this.tokenizer = new Tokenizer(dictionary);
 }