I am pretty new to C# and I would like to know how more experienced programmers would solve this issue. In this code the is a private const string with a bunch of numbers and letters. I need my program to find which number occurs the most frequently and how many times it occurs and spit out the results.
public class Program
{
private const string FileContents = "\"12345.56789\",\"12345.56789\",\"12345.56789\",\"12345.56789\"";
public static void Main()
{
}
}