Skip to main content

Posts

Showing posts with the label 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 ; ...