convert string to float with trailing zeros in C#

Viewed 47

I want to keep my original string when converting to float for example "0231.03200" be 0231.03200. I know float is for value and only cares about value but what should I do in this situation?

I'm using this conversion

_state.M0_converted = Array.ConvertAll(M0, float.Parse);
0 Answers
Related