The task what I\'m trying to do is about showing up the frequency of every single characters from the string object, for the moment I\'ve done some part of code, just doesn\'t h
If you're looking to do it without Linq, then try
var charDictionary = new Dictionary(); string sign = "attitude"; foreach(char currentChar in sign) { if(charDictionary.ContainsKey(currentChar)) { charDictionary[currentChar]++; } else { charDictionary.Add(currentChar, 1); } }