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)
{
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;
}
{
if (charList.Value ==
last)
{
Console.WriteLine("{0}:
{1}",
charList.Key, charList.Value);
}
}
Console.ReadLine();
}
}
The
output live