Takes a string and converts it into a decimal while stripping out "$".
public static decimal? MoneyParse(this string value,
bool convertNullToZero = false)
Money formatted string to convert to decimal.
Converts a null value to a 0.
decimal? m = "$4.95".MoneyParse();