using System.Collections.Generic;
public static void Main()
string str="Dictionaryd";
string strUp=str.ToUpper();
char[] chArr=strUp.ToCharArray();
Dictionary<char,int> dict=new Dictionary<char,int>();
foreach(char ch in chArr)
foreach(var item in dict.Keys)
Console.WriteLine(item+":"+dict[item]);
Console.WriteLine("Hello World");