Find the most occurrence of a character in string C#?

Find the most occurrence of a character in string C#?

Hello everyone, I am going to share the code sample for find the most occurrence of a character in string using ASP.Net C#. The example in detail with output as given below.

public class CountMostOccurrenceCharacters
{
static void Main(string[] ss)
{
    Dictionary<char, int> dicList = new Dictionary<char, int>();
    int last = 0;

    Console.WriteLine("Enter the charactor string");

    foreach (char chr in Console.ReadLine())
    {
        int count;
        dicList.TryGetValue(chr , out count);

        count++;
        if (count > last)
        {
            last = count;
        }
        dicList[chr ] = count;
    }

    foreach (KeyValuePair<char, int> charList in dicList)
    {
        if (charList.Value == last)
        {
            Console.WriteLine("{0}: {1}", charList.Key, charList.Value);
        }
    }
    Console.ReadLine();
}
}


The output live 


ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Find the most occurrence of a character in string C#? Find the most occurrence of a character in string C#? Reviewed by Anil Singh on 8:43 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^