I have the same problem as HERE, but I'm using C#,
How to do it in C#?
(if use Tostring("F") as Here, all float number will turn into X.XX, also 0 to 0.00)
Here's an example float numbers
232.00000000
0.18000000000
1237875192.0
4.5800000000
0.00000000
1.23450000
What I want to turn them into:
232
0.18
1237875192
4.58
0
1.2345
Edit
(I suddenly find what I want to do is more complicate than above but it's too late to modify the question, maybe I'll ask it in another question...)