Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            StreamReader inputFileStream = File.OpenText("../../../Input/pride-and-prejudice.txt");
            string       fileContent     = inputFileStream.ReadToEnd();

            FileContentProcessor processor = new FileContentProcessor(fileContent);
            IEnumerable <KeyValuePair <Word, OccurenceCount> > occurences = processor.ProcessWords();

            foreach (KeyValuePair <Word, OccurenceCount> occurence in occurences.Take(25))
            {
                Word           word  = occurence.Key;
                OccurenceCount count = occurence.Value;
                Console.WriteLine(word + " => " + count);
            }

            Console.ReadKey();
        }
        static void Main(string[] args)
        {
            StreamReader inputFileStream = File.OpenText("../../../Input/pride-and-prejudice.txt");
            string fileContent = inputFileStream.ReadToEnd();

            FileContentProcessor processor = new FileContentProcessor(fileContent);
            IEnumerable<KeyValuePair<Word, OccurenceCount>> occurences = processor.ProcessWords();

            foreach (KeyValuePair<Word, OccurenceCount> occurence in occurences.Take(25))
            {
                Word word = occurence.Key;
                OccurenceCount count = occurence.Value;
                Console.WriteLine(word + " => " + count);
            }

            Console.ReadKey();
        }