using System.Collections.Generic;
public static void Main()
var obj = Numberofocurrances(abc);
Console.WriteLine(t.Key +"has occurred"+ t.Value+ "times");
private static Dictionary<string, int> Numberofocurrances(string strconst)
return strconst.GroupBy(x => x).Select( x =>new
}).ToDictionary(t=>t.Key,t=>t.Value);