I am trying to remove just the decimal point from a decimal number in C#.
For example:
2353.61
235361
Maybe something like this(if the dot is in an unknown place - otherwise it's a simple multipication):
string str = decNum.ToString().Replace(".",string.Empty); decimal dec = decimal.Parse(str);