Beispiel #1
0
 public Searcher(byte[] kmp)
 {
     Kmp = new Kmp(kmp);
 }
Beispiel #2
0
 public Searcher(Kmp kmp)
 {
     Kmp = kmp;
 }