I am creating a program that checks repeated letters in a string.
For Example:
wooooooooooowhapppppppppy
This is my
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Delegate { class Program { public int repeatcount(string str,char ch) { var count = 0; for (int i = 0; i