文字列から任意の文字を取り除くには、Replace メソッドを用いて取り除く対象の文字と空文字("")を引数に指定します。
// コンマを含む文字列 string valWithComma = "13,000"; // Replace メソッドでコンマを空文字に置き換え string valWithoutComma = valWithComma.Replace(",","");How to remove commas in a string in C# ??
http://bytes.com/topic/net/answers/650947-how-remove-commas-string-c