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"); }
public TextGenerator(String fileName) { _seed = DateTime.Now.Millisecond; _lexicon = new Thesaurus(fileName); }
public RandomTextGenerator() { _seed = DateTime.Now.Millisecond; _lexicon = new Thesaurus("pldf-win.txt"); }