using System;
public class Program
{
public static void Main()
var moneyString = "1,345.67";
Console.WriteLine(Convert.ToDecimal(moneyString));
}