using System.Collections.Generic;
public static void Main()
var wt = AnalyseerZin("Hallo joske wereld joske hallo hallo");
Console.WriteLine(wt.Count);
Console.WriteLine(wt["wereld"]);
static Dictionary<string, int> AnalyseerZin(string zin) {
var t = new Dictionary<string, int>();
foreach(var woord in zin.Split(' ')) {
if(t.ContainsKey(woord)) {