예제 #1
0
 public Dictionary <string, int> GetWordCount(string sourceFilePath)
 {
     string[] codeTokens = _sourceReader.ReadTokens(sourceFilePath);
     return(CountWords(GetWords(codeTokens)));
 }