Exemplo n.º 1
0
 public TextGenerator(int seed, String fileName)
 {
     _seed = seed;
     _lexicon = new Thesaurus(fileName);
 }
 public RandomTextGenerator(int wordsAmt)
 {
     _seed = DateTime.Now.Millisecond;
     WordsAmount = wordsAmt;
     _lexicon = new Thesaurus("pldf-win.txt");
 }
Exemplo n.º 3
0
 public TextGenerator(String fileName)
 {
     _seed = DateTime.Now.Millisecond;
     _lexicon = new Thesaurus(fileName);
 }
 public RandomTextGenerator()
 {
     _seed = DateTime.Now.Millisecond;
     _lexicon = new Thesaurus("pldf-win.txt");
 }