I have coded a very simple \"Word Count\" program that reads a file and counts each word\'s occurrence in the file. Here is a part of the code:
class Alaki {
Just for fun, here is a shorter PLINQ version:
File.ReadAllText("big.txt").Split().AsParallel().GroupBy(t => t) .ToDictionary(g => g.Key, g => g.Count());