Sort a string that is displaying currency data like this $1,995.94 numerically in a set of data.
string
$1,995.94
I\'m cu
decimal amount = decimal.Parse("$123,456.78", NumberStyles.AllowCurrencySymbol | NumberStyles.AllowThousands | NumberStyles.AllowDecimalPoint);